From ff08a7638cbd6b9ed99ea941431d0a7a46356149 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 23:54:58 +0000 Subject: [PATCH 1/2] chore(deps): bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/gate-verify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gate-verify.yml b/.github/workflows/gate-verify.yml index 34d22a5..5a31b76 100644 --- a/.github/workflows/gate-verify.yml +++ b/.github/workflows/gate-verify.yml @@ -11,7 +11,7 @@ jobs: verify-gate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 From 8f39e7b447f5aaa7ef8e98d7cfb5e57ce5a25bd0 Mon Sep 17 00:00:00 2001 From: Cody Kickertz Date: Thu, 26 Mar 2026 18:58:14 -0500 Subject: [PATCH 2/2] fix(ci): skip gate-passed check for bot PRs Dependabot PRs cannot run kanon gate locally, so the Gate-Passed trailer check fails unconditionally. Skip the verification step when the PR author is a bot. Co-Authored-By: Claude Opus 4.6 Gate-Passed: kanon v0.1.0 (menos, 2026-03-26T19:00:56-05:00) Gate-Checks: --- .github/workflows/gate-verify.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/gate-verify.yml b/.github/workflows/gate-verify.yml index 5a31b76..8dfa922 100644 --- a/.github/workflows/gate-verify.yml +++ b/.github/workflows/gate-verify.yml @@ -15,7 +15,19 @@ jobs: with: fetch-depth: 0 + - name: Check for bot PR + id: bot-check + run: | + author="${{ github.event.pull_request.user.login }}" + if [[ "$author" == *"[bot]" || "$author" == "dependabot"* ]]; then + echo "skip=true" >> "$GITHUB_OUTPUT" + echo "Skipping gate check for bot author: $author" + else + echo "skip=false" >> "$GITHUB_OUTPUT" + fi + - name: Verify Gate-Passed trailer + if: steps.bot-check.outputs.skip != 'true' run: | commits=$(git log --format="%H" origin/main..HEAD) if [ -z "$commits" ]; then