Skip to content

Commit

Permalink
Merge pull request nightscout#85 from ebouchut/config/pr-dependency-c…
Browse files Browse the repository at this point in the history
…heck

👷 Add a GitHub workflow to prevent blocked PRs from being merged
  • Loading branch information
MikePlante1 authored Nov 3, 2024
2 parents 37cdd4f + 746adb9 commit ad9b1c0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pr_dependencies_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Prevent Blocked PRs from being Merged

on:
pull_request:
types:
- opened
- edited
- closed
- reopened
issues:
types:
- opened
- edited
- deleted
- transferred
- closed
- reopened

jobs:
blocking_issues:
runs-on: ubuntu-latest
steps:
- uses: Levi-Lesches/blocking-issues@v2

0 comments on commit ad9b1c0

Please sign in to comment.