fix: align landing page copy to output/outcome/impact distinction #24
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
| # Calls reusable workflow from spx-gh-actions | |
| # | |
| # Required setup: | |
| # 1. Add CLAUDE_CODE_OAUTH_TOKEN to repository secrets | |
| # 2. Adjust authorized_roles if needed | |
| name: Claude Code | |
| on: | |
| issue_comment: | |
| types: [created, edited] | |
| pull_request_review_comment: | |
| types: [created, edited] | |
| issues: | |
| types: [opened, assigned] | |
| pull_request_review: | |
| types: [submitted] | |
| permissions: | |
| contents: read | |
| issues: read | |
| pull-requests: read | |
| id-token: write | |
| actions: read | |
| jobs: | |
| claude: | |
| permissions: | |
| contents: read | |
| issues: read | |
| pull-requests: read | |
| id-token: write | |
| actions: read | |
| uses: simonheimlicher/spx-gh-actions/.github/workflows/claude.yml@main | |
| secrets: | |
| CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} | |
| # Uncomment and modify to customize: | |
| # with: | |
| # authorized_roles: '["OWNER", "MEMBER"]' | |
| # mention_trigger: '@bot' | |
| # concurrency_cancel: false | |
| # allowed_tools: '--allowed-tools "Read,Grep,Glob,Bash(gh pr:*)"' |