Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.9.0 to 0.9.1. - [Release notes](https://github.com/styfle/cancel-workflow-action/releases) - [Commits](https://github.com/styfle/cancel-workflow-action/compare/0.9.0...0.9.1) --- updated-dependencies: - dependency-name: styfle/cancel-workflow-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
17 lines
379 B
YAML
17 lines
379 B
YAML
name: Janitor
|
|
# Janitor cleans up previous runs of various workflows
|
|
# Cancels Sims and Tests
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
cancel:
|
|
name: "Cancel Previous Runs"
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 3
|
|
steps:
|
|
- uses: styfle/cancel-workflow-action@0.9.1
|
|
with:
|
|
workflow_id: 872925,1013614,1134055
|
|
access_token: ${{ github.token }}
|