Skip to content

Commit 475b5ae

Browse files
chore(cmd-compil): add suppressor
Signed-off-by: Josh <josh.t.richards@gmail.com>
1 parent 9fdbc74 commit 475b5ae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

workflow-templates/command-compile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ jobs:
211211
if: ${{ !contains(needs.init.outputs.arg1, 'rebase') && !contains(needs.init.outputs.arg1, 'amend') }}
212212
env:
213213
HEAD_REF: ${{ needs.init.outputs.head_ref }}
214-
BOT_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
214+
BOT_TOKEN: ${{ secrets.COMMAND_BOT_PAT }} # zizmor: ignore[secrets-outside-env]
215215
run: |
216216
git remote set-url origin "https://x-access-token:${BOT_TOKEN}@github.com/${{ github.repository }}.git"
217217
git push origin "$HEAD_REF"
@@ -220,7 +220,7 @@ jobs:
220220
if: ${{ contains(needs.init.outputs.arg1, 'rebase') || contains(needs.init.outputs.arg1, 'amend') }}
221221
env:
222222
HEAD_REF: ${{ needs.init.outputs.head_ref }}
223-
BOT_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
223+
BOT_TOKEN: ${{ secrets.COMMAND_BOT_PAT }} # zizmor: ignore[secrets-outside-env]
224224
run: |
225225
git remote set-url origin "https://x-access-token:${BOT_TOKEN}@github.com/${{ github.repository }}.git"
226226
git push --force-with-lease origin "$HEAD_REF"

0 commit comments

Comments
 (0)