Skip to content

Commit 0ea0904

Browse files
committed
Update documentation to reflect org-level secrets
- Added comments in workflow files clarifying that CLAUDE_CODE_OAUTH_TOKEN is configured at the organization level - Updated README to explicitly state that the secret is already configured and no per-repository setup is needed - Added note that GITHUB_TOKEN is automatically provided by GitHub Actions
1 parent cd5af51 commit 0ea0904

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/claude.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
secrets:
66
CLAUDE_CODE_OAUTH_TOKEN:
77
required: true
8+
# Note: This secret is configured at the organization level and automatically
9+
# inherited when using 'secrets: inherit' in the calling workflow
810
# The following triggers are commented out since this is a reusable workflow.
911
# Uncomment them if you want to use this workflow directly in this repository.
1012
# issue_comment:

.github/workflows/issue-triage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ on:
44
secrets:
55
CLAUDE_CODE_OAUTH_TOKEN:
66
required: true
7+
# Note: This secret is configured at the organization level and automatically
8+
# inherited when using 'secrets: inherit' in the calling workflow
79
GITHUB_TOKEN:
810
required: true
11+
# Note: This is automatically provided by GitHub Actions
912
# The following trigger is commented out since this is a reusable workflow.
1013
# Uncomment it if you want to use this workflow directly in this repository.
1114
# issues:

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ jobs:
5656

5757
## Requirements
5858

59-
The following organization or repository secrets must be configured:
60-
- `CLAUDE_CODE_OAUTH_TOKEN`: OAuth token for Claude Code functionality (get it from [Claude Code OAuth](https://console.anthropic.com/settings/oauth))
59+
The following secrets are required:
60+
- `CLAUDE_CODE_OAUTH_TOKEN`: OAuth token for Claude Code functionality
61+
- **Already configured** at the organization level for all OpenSwiftUI Project repositories
62+
- No per-repository configuration needed
6163
- `GITHUB_TOKEN`: Automatically provided by GitHub Actions

0 commit comments

Comments
 (0)