Github app to autocancel previous builds of GitHub workflows. This action is automatically deployed to Glitch.
The configuration file is called auto-cancel-actions.yml
and must be placed in the .github
directory: .github/auto-cancel-actions.yml
.
At the top of this file you must specify that the version
is 1
.
branches
are a list of micromatch
expressions.
version: 1
push:
branches:
- '!main'
pull_request:
version: 1
push:
pull_request:
version: 1
push:
branches:
- main
- 'renovate/**'
For more information about deploying the bot, read the probot docs on deployment.
For more information about configuring the bot, read the probot docs on configuration.