mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-11 18:12:23 +01:00
Add dependency check action
This commit is contained in:
29
.github/workflows/dependent-issues.yml
vendored
Normal file
29
.github/workflows/dependent-issues.yml
vendored
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
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
|
||||||
Reference in New Issue
Block a user