Dependent Issues #3879
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: | |
issues: | |
types: | |
- opened | |
- edited | |
- reopened | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize # Add status check for PRs. | |
# Schedule a daily check. | |
# Used in referencing cross-repository issues or pull requests | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
issues: read | |
statuses: write | |
steps: | |
- uses: z0al/dependent-issues@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
check_issues: off # Do not check issues | |
keywords: depends on, blocked by, based on |