ci: add missing space in `bot-project-automation.yml`
What changed, and why it matters
This commit fixes a trivial formatting issue in a GitHub Actions workflow file by adding a missing space before two inline comments. It has no security relevance.
No security action needed. This is a cosmetic CI lint fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The change adds one extra space before inline comments on lines 31 and 39 of .github/workflows/bot-project-automation.yml to satisfy yamllint’s comments rule (expected 2 spaces before comment). The pinned action hash, action version, workflow logic, and token usage are unchanged. This is a pure style/lint fix.
Changed components
.github/workflows/bot-project-automation.ymlInspect captured patch +2 / −2
diff --git a/.github/workflows/bot-project-automation.yml b/.github/workflows/bot-project-automation.yml
index 4a8466b0..19c8b365 100644
--- a/.github/workflows/bot-project-automation.yml
+++ b/.github/workflows/bot-project-automation.yml
@@ -28,7 +28,7 @@ jobs:
- name: Add new pull request to the Firmware project
# run only for pull requests
if: github.event_name == 'pull_request'
- uses: actions/add-to-project@158aad9ed186a4842abf69d0f8071a0ff95312d0 # main@2026-01-06
+ uses: actions/add-to-project@158aad9ed186a4842abf69d0f8071a0ff95312d0 # main@2026-01-06
with:
project-url: https://github.com/orgs/trezor/projects/60
github-token: ${{ steps.trezor-bot-token.outputs.token }}
@@ -36,7 +36,7 @@ jobs:
- name: Add new issue to the Firmware project
# run only for issues
if: github.event_name == 'issues'
- uses: actions/add-to-project@158aad9ed186a4842abf69d0f8071a0ff95312d0 # main@2026-01-06
+ uses: actions/add-to-project@158aad9ed186a4842abf69d0f8071a0ff95312d0 # main@2026-01-06
with:
project-url: https://github.com/orgs/trezor/projects/60
github-token: ${{ steps.trezor-bot-token.outputs.token }}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.