Skip to content

Commit

Permalink
ci(checks): Add wait-for-checks workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chris3ware committed Sep 13, 2024
1 parent 6600974 commit e6fd660
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/wait-for-checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Checks

on:
pull_request:
types: [opened, edited, synchronize]
branches: [main]

# Disable permissions for all available scopes
permissions: {}

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true

jobs:
enforce-all-checks:
permissions:
checks: read
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: GitHub Checks
uses: poseidon/wait-for-status-checks@6988432d64ad3f9c2608db4ca16fded1b7d36ead # v0.5.0
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e6fd660

Please sign in to comment.