Skip to content

Commit

Permalink
chore(ci): add a PR workflow that can be used for status checks
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Apr 13, 2024
1 parent 2057242 commit 0bec737
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Hopefully use this for the "required status checks"
name: Status Checks Passed
on:
workflow_run:
workflows: ["CI"]
branches-ignore: ["main"]
types:
- completed
jobs:
success:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

0 comments on commit 0bec737

Please sign in to comment.