Dependency check #1374
This file contains hidden or 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: Dependency check | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| - edited | |
| - closed | |
| - reopened | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - closed | |
| - reopened | |
| - synchronize | |
| # Schedule a check for every 2 hours (23rd minute). | |
| schedule: | |
| - cron: '23 */2 * * *' | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: z0al/dependent-issues@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| label: requires dependency | |
| check_issues: off | |
| keywords: depends on, blocked by, requires, needs |