Skip to content

Commit 539a31b

Browse files
HanSur94claude
andcommitted
fix: wrap generate-wiki.yml if-expression in ${{ }} syntax
GitHub Actions parses bare [bot] as expression syntax. Wrapping in ${{ }} resolves the workflow file error. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d943fa8 commit 539a31b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/generate-wiki.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
generate:
1717
name: Generate Wiki Pages with LLM
1818
runs-on: ubuntu-latest
19-
if: github.actor != 'github-actions[bot]'
19+
if: ${{ github.actor != 'github-actions[bot]' }}
2020
steps:
2121
- name: Checkout main repo
2222
uses: actions/checkout@v4

0 commit comments

Comments
 (0)