Read this in other languages: English, 日本語.
冗長ビルドを自動キャンセルする GitHub Actions
です。
on:
repository_dispatch:
types: [test]
# push:
# ...
name: Example
jobs:
firstJob:
name: First Job
runs-on: ubuntu-latest
steps:
# この GitHub Actions をこの workflow の中でできるだけ早く少なくとも一度は使用してください。
- uses: technote-space/auto-cancel-redundant-job@v1
# Run any steps
- name: any steps
run: echo test
# ...
# Run any jobs
secondJob:
name: Second Job
needs: firstJob
runs-on: ubuntu-latest
steps:
- run: echo test
# ...
e.g.
name | description | e.g. |
---|---|---|
ids | キャンセルされた Run ID | 1234,2345 |