A simple, elegant counter with support for counting multiple things at once.
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: Add catch-all job for required status checks

The auto-merge was merging before status checks completed. The extra job
added here will tie into GitHub branch protection rules.

Joseph Hale (Oct 30, 2023, 12:15 PM -0700) d9b93a88 72bec007

+14
+14
.github/workflows/precommit.yml
··· 26 26 - uses: pre-commit/action@v3.0.0 27 27 - uses: pre-commit-ci/lite-action@v1.0.1 28 28 if: always() 29 + 30 + # Remove the maintenance burden for required status checks. 31 + # https://github.com/marketplace/actions/alls-green#why 32 + all-green: 33 + if: always() 34 + needs: 35 + - main 36 + 37 + runs-on: ubuntu-latest 38 + steps: 39 + - name: Ensure all other jobs pass successfully. 40 + uses: re-actors/alls-green@release/v1 41 + with: 42 + jobs: ${{ toJSON(needs) }}