Dependent Issues #4127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependent Issues | |
on: | |
schedule: | |
- cron: '*/15 * * * *' # run every 15 minutes | |
jobs: | |
cancel: | |
name: 'Cancel Previous Runs (dependent issues)' | |
runs-on: ubuntu-latest | |
# timeout-minutes: 3 | |
steps: | |
- uses: styfle/[email protected] | |
with: | |
all_but_latest: true | |
access_token: ${{ github.token }} | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: z0al/dependent-issues@v1 | |
env: | |
# (Required) The token to use to make API calls to GitHub. | |
GITHUB_TOKEN: ${{ secrets.DEPENDENT_ISSUES_TOKEN }} | |
with: | |
# (Optional) The label to use to mark dependent issues | |
label: blocked-by-other-PR | |
# (Optional) Enable checking for dependencies in issues. Enable by | |
# setting the value to "on". Default "off" | |
check_issues: off | |
# (Optional) A comma-separated list of keywords. Default | |
# "depends on, blocked by" | |
keywords: "- \\[ \\] depends on:,- \\[x\\] depends on:" |