From 03b912451be28174f17128340ff21dd66f41c575 Mon Sep 17 00:00:00 2001 From: Jonathan LELIEVRE Date: Thu, 23 Apr 2026 13:32:06 +0200 Subject: [PATCH] Add job display names and upgrade actions/checkout to v6 --- .github/workflows/ai-guarded-review.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ai-guarded-review.yml b/.github/workflows/ai-guarded-review.yml index ca976e0..d79d181 100644 --- a/.github/workflows/ai-guarded-review.yml +++ b/.github/workflows/ai-guarded-review.yml @@ -62,6 +62,7 @@ on: jobs: # Step 1: Check if PR was already reviewed check-label: + name: Check reviewed label runs-on: ubuntu-latest outputs: already-reviewed: ${{ steps.check.outputs.already-reviewed }} @@ -83,6 +84,7 @@ jobs: # Step 2: Check team membership only if label is absent check-membership: + name: Check team membership runs-on: ubuntu-latest needs: check-label if: needs.check-label.outputs.already-reviewed != 'true' @@ -132,6 +134,7 @@ jobs: # Step 3: Evaluate guard gate: + name: Evaluate guard runs-on: ubuntu-latest needs: [check-label, check-membership] if: always() @@ -154,6 +157,7 @@ jobs: # Step 4: Guard failed — remove trigger label and fail guard-failed: + name: Guard failed needs: gate if: needs.gate.outputs.can-run != 'true' runs-on: ubuntu-latest @@ -170,6 +174,7 @@ jobs: # Step 5: Run Claude review ai-review: + name: Claude AI review needs: gate if: needs.gate.outputs.can-run == 'true' runs-on: ubuntu-latest @@ -180,7 +185,7 @@ jobs: GH_TOKEN: ${{ secrets.github-token }} PR_NUMBER: ${{ inputs.pr-number }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0