-
Notifications
You must be signed in to change notification settings - Fork 0
Improve dashboard UX clarity for channel settings and dependencies #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 8 commits
5035a6b
70552af
6d3a092
8649983
af7f001
355d5a6
bc2822b
69eed32
9506db5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| name: Claude Code | ||
|
|
||
| on: | ||
| issues: | ||
| types: [opened, edited] | ||
| issue_comment: | ||
| types: [created, edited] | ||
|
|
||
| jobs: | ||
| claude: | ||
| runs-on: ubuntu-latest | ||
| # Only run when @claude is mentioned in issues/comments | ||
| if: contains(github.event.comment.body, '@claude') || contains(github.event.issue.body, '@claude') | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Run Claude Code | ||
| uses: anthropics/claude-code-action@v1 | ||
| with: | ||
| prompt: | | ||
| ${{ github.event.comment.body || github.event.issue.body }} | ||
| claude_args: | | ||
| --max-turns 10 | ||
| env: | ||
| # Use OAuth token for Claude Max/Pro subscription (no API key needed) | ||
| CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -10,6 +10,7 @@ permissions: {} | |||||
|
|
||||||
| jobs: | ||||||
| label: | ||||||
| if: github.repository_owner == 'openclaw' && secrets.GH_APP_PRIVATE_KEY != '' | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Condition won't work as intended. Secrets aren't available in
Suggested change
The secret availability will be enforced when the step tries to use it. Prompt To Fix With AIThis is a comment left during a code review.
Path: .github/workflows/labeler.yml
Line: 13
Comment:
Condition won't work as intended. Secrets aren't available in `if` conditions — they're always empty strings in workflow expressions. This check will always evaluate to false on forks.
```suggestion
if: github.repository_owner == 'openclaw'
```
The secret availability will be enforced when the step tries to use it.
How can I resolve this? If you propose a fix, please make it concise. |
||||||
| permissions: | ||||||
| contents: read | ||||||
| pull-requests: write | ||||||
|
|
@@ -48,6 +49,7 @@ jobs: | |||||
| }); | ||||||
|
|
||||||
| label-issues: | ||||||
| if: github.repository_owner == 'openclaw' && secrets.GH_APP_PRIVATE_KEY != '' | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same issue — secret check in
Suggested change
Prompt To Fix With AIThis is a comment left during a code review.
Path: .github/workflows/labeler.yml
Line: 52
Comment:
Same issue — secret check in `if` won't work.
```suggestion
if: github.repository_owner == 'openclaw'
```
How can I resolve this? If you propose a fix, please make it concise. |
||||||
| permissions: | ||||||
| issues: write | ||||||
| runs-on: ubuntu-latest | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"timestamp":"2026-02-07T03:11:12.846Z","level":"debug","hook":"voice-macos","event":"voice","message":"Speech completed"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
secrets.GH_APP_PRIVATE_KEYreference won't work inifconditionPrompt To Fix With AI