From 50b4a6f25367e058735c1a4dc1b65072869fa42c Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 11:26:12 +0000 Subject: [PATCH] ci: pin feature-ideation-reusable.yml to SHA for action pinning compliance Pin `petry-projects/.github/.github/workflows/feature-ideation-reusable.yml` from `@v1` to `@208ec2d69b75227d375edf8745d84fbac05a76b2` (v1) per the action-pinning policy. Also sync the missing `dry_run` input and `with` param from the upstream standards template. Closes #159 Co-authored-by: don-petry --- .github/workflows/feature-ideation.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/feature-ideation.yml b/.github/workflows/feature-ideation.yml index 2b757a4a..a7d37256 100644 --- a/.github/workflows/feature-ideation.yml +++ b/.github/workflows/feature-ideation.yml @@ -53,6 +53,11 @@ on: - quick - standard - deep + dry_run: + description: 'Skip Discussion mutations and log them to a JSONL artifact instead. Use this on a fork to smoke-test before going live.' + required: false + default: false + type: boolean permissions: {} @@ -75,7 +80,7 @@ jobs: pull-requests: read discussions: write id-token: write - uses: petry-projects/.github/.github/workflows/feature-ideation-reusable.yml@v1 + uses: petry-projects/.github/.github/workflows/feature-ideation-reusable.yml@208ec2d69b75227d375edf8745d84fbac05a76b2 # v1 with: # === CUSTOMISE THIS PER REPO — the only required edit === # Replace this paragraph with a 3-5 sentence description of your project, @@ -87,5 +92,6 @@ jobs: include A, B, C. Key emerging trends in this space: X, Y, Z." focus_area: ${{ inputs.focus_area || '' }} research_depth: ${{ inputs.research_depth || 'standard' }} + dry_run: ${{ inputs.dry_run || false }} secrets: CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}