Skip to content

Commit 0cd7b6c

Browse files
Use deco-testing runner group for Claude Code dispatch
The databricks-eng org has a GitHub IP allowlist that blocks ubuntu-latest runners from generating GitHub App tokens. Switch to databricks-deco-testing-runner-group (with ubuntu-latest-deco label) which has allowlisted IPs, matching the pattern used by start-integration-tests.yml and other dispatch workflows. Co-authored-by: Isaac
1 parent 4d0821f commit 0cd7b6c

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/claude-code.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
# Automatic PR review when a PR is opened or updated.
2222
review:
2323
if: github.event_name == 'pull_request'
24-
runs-on: ubuntu-latest
24+
runs-on:
25+
group: databricks-deco-testing-runner-group
26+
labels: ubuntu-latest-deco
2527
environment: test-trigger-is
2628
permissions:
2729
contents: read
@@ -51,7 +53,9 @@ jobs:
5153
if: |
5254
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
5355
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude'))
54-
runs-on: ubuntu-latest
56+
runs-on:
57+
group: databricks-deco-testing-runner-group
58+
labels: ubuntu-latest-deco
5559
environment: test-trigger-is
5660
permissions:
5761
contents: read

0 commit comments

Comments
 (0)