Skip to content

Commit 917416d

Browse files
authored
Merge pull request #427 from netwrix/dev
fix expression parse error in doc-pr workflow
2 parents ad7eb02 + 9b4cd27 commit 917416d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/claude-doc-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,11 @@ jobs:
122122
# Job 2: @claude follow-up on PR comments
123123
# ──────────────────────────────────────────────
124124
doc-followup:
125-
if: |
125+
if: >-
126126
github.event_name == 'issue_comment' &&
127127
github.event.issue.pull_request &&
128128
contains(github.event.comment.body, '@claude') &&
129-
github.event.comment.user.login != 'github-actions[bot]'
129+
!startsWith(github.event.comment.user.login, 'github-actions')
130130
runs-on: ubuntu-latest
131131
permissions:
132132
contents: write

0 commit comments

Comments
 (0)