Claude/fix pr review trigger 01 as v ap7uog8g35 woq k9 ak vj #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR Review Simple Test | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| test-comment: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Post test comment | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| github.rest.issues.createComment({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body: '🤖 **PR Review Workflow Test**\n\nThis workflow is working! PR #' + context.issue.number + ' triggered successfully.\n\n_Timestamp: ' + new Date().toISOString() + '_' | |
| }) |