Skip to content
#

action

actions logo

GitHub Actions gives you the flexibility to build an automated software development lifecycle workflow. You can write individual tasks, called actions, and combine them to create a custom workflow. Workflows are custom automated processes that you can set up in your repository to build, test, package, release, or deploy any code project on GitHub.

“With GitHub Actions you can build end-to-end continuous integration (CI) and continuous deployment (CD) capabilities directly in your repository. GitHub Actions powers GitHub's built-in continuous integration service. For more information, see "About continuous integration."

Featured Actions

Getting Started

Community & Support

Taking Action With GitHub Actions

Here are 575 public repositories matching this topic...

release-drafter
jonpas
jonpas commented Apr 18, 2020

Exposing category name as a "Change Template" variable would be useful for generating change logs in this format:

- ADDED: X (#100)
- ADDED: Y (#101)
- FIXED: Z (#99)

Relevant documentation:

Variable Description
$CATEGORY The category title of the pull request, e.g. Features.

As far as I know you can't do that with Replacers, as you only have one cat

deox
dannypule
dannypule commented Oct 4, 2019

This should fail because otherNum is not part of the State interface:

interface State {
  num: number
}

export const initialState: State = {
  num: 0
};

export const appsReducer = createReducer(initialState, handleAction => [
  handleAction(actions.getApps.success, () => ({
    num: 0,
    otherNum: 0 // adding this property should trigger a warning
  })),
]);

Created by GitHub

Released October 16, 2018

Organization
actions
Website
github.com/features/actions

Related Topics

ci docker
You can’t perform that action at this time.