Skip to content
This repository was archived by the owner on Mar 27, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,20 @@ jobs:
- name: Run license check
run: npx license-checker --production --summary
continue-on-error: true

ci-success:
name: CI Success
runs-on: ubuntu-latest
needs: [ci, security]
if: always()
timeout-minutes: 5
permissions:
checks: read
statuses: read

steps:
- name: Wait for all PR checks to succeed
uses: promptfoo/.github/.github/actions/ci-success@main
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Pin shared action to immutable commit SHA

Replace @main with a pinned commit SHA. Referencing a moving branch allows unreviewed upstream changes to execute in this repo’s CI with GITHUB_TOKEN, which can bypass expected review and make checks non-deterministic. This is a supply-chain integrity risk for the merge gate.

Useful? React with 👍 / 👎.

with:
github-token: ${{ secrets.GITHUB_TOKEN }}
timeout-seconds: 300
1 change: 1 addition & 0 deletions .github/workflows/pr-title-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
scopes: |
deps
deps-dev
ci
requireScope: false
subjectPattern: ^(?![A-Z]).+$
subjectPatternError: |
Expand Down
Loading