Skip to content

Commit 4343e01

Browse files
ci: SHA-pin actions/add-to-project (fix roadmap auto-add startup_failure) (#580)
## What SHA-pin `actions/add-to-project` in `.github/workflows/add-to-roadmap.yml`. ## Why The roadmap-automation workflow (added in the board-automation pilot) referenced `actions/add-to-project@v1.0.2` — a **tag**. This repo enforces `sha_pinning_required=true` on Actions, so the tag ref produced a `startup_failure`: the workflow never ran, and new issues/PRs were **not** being added to roadmap project #35. Confirmed via a throwaway test issue (hypatia#477) whose run failed at startup while sibling SHA-pinned workflows succeeded. Pinned to the `v1.0.2` commit `244f685bbc3b7adfa8466e08b698b5577571133e` (comment retains the human-readable version). This is the only change needed to make the pilot loop live. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 96ed1df commit 4343e01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/add-to-roadmap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
add-to-project:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/add-to-project@v1.0.2
16+
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
1717
with:
1818
project-url: https://github.com/users/hyperpolymath/projects/35
1919
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

0 commit comments

Comments
 (0)