Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/agent-shield.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ permissions:

jobs:
agent-shield:
uses: petry-projects/.github/.github/workflows/agent-shield-reusable.yml@ee22b427cbce9ecadcf2b436acb57c3adf0cb63d # v1
uses: petry-projects/.github/.github/workflows/agent-shield-reusable.yml@v1
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 reusable workflow to immutable commit SHA

Reference @v1 is a mutable tag, so this repository can start executing different CI logic without any change in this repo whenever the upstream tag is moved. For a security/compliance workflow, that removes reproducibility and weakens supply-chain guarantees compared with the previous pinned SHA; use an immutable commit ref to keep scans deterministic and auditable.

Useful? React with 👍 / 👎.

6 changes: 3 additions & 3 deletions .github/workflows/ci-failure-analyst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@
# Docs: https://github.com/petry-projects/.github-private/blob/main/docs/aw/ci-failure-analyst.md
# ─────────────────────────────────────────────────────────────────────────────

name: "CI Failure Analyst"
name: 'CI Failure Analyst'

on:
check_run:
types: [completed]

permissions:
pull-requests: write
issues: write # post/read PR comments via the Issues comments API
issues: write # post/read PR comments via the Issues comments API
actions: read
contents: read
checks: read

concurrency:
group: "ci-failure-analyst-${{ github.event.check_run.head_sha }}"
group: 'ci-failure-analyst-${{ github.event.check_run.head_sha }}'
cancel-in-progress: false

jobs:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ playwright-report/
# compliance-ci-trigger
# ci-trigger-298
.dev-lead/
.dev-lead/
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

low

The entry .dev-lead/ is already present in the .gitignore file. This duplicate entry is redundant and should be removed.