Skip to content
Closed
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
13 changes: 12 additions & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,22 @@ jobs:
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- uses: metio/ci/policy-check@59a3cbf82e2797f72e63edce1880a4c8db865a3d # 2026.7.6091618
dco:
# Developer Certificate of Origin: every commit carries a Signed-off-by
# trailer. Bot PRs skip; a skipped job still satisfies the gate below.
if: github.event.pull_request.user.type != 'Bot'
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
with:
fetch-depth: 0
- uses: metio/ci/dco@68ccaa80327a09d6be7ee72fc81ffa370bd73fff # main
verify:
# Single required check: mark only this one required in branch protection and
# new jobs are covered automatically.
name: Verify
needs: [reuse, yaml, github-actions, markdown, policy]
needs: [reuse, yaml, github-actions, markdown, dco, policy]
if: always()
runs-on: ubuntu-latest
timeout-minutes: 5
Expand Down