Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
path-to-document: 'https://github.com/${{ github.repository }}/blob/main/CLA/version_1/CLA.md'
# Branch where CLA signatures will be stored
branch: 'IMPT_cla_signatures'
allowlist: 'dependabot[bot],github-actions[bot],claude,copilot'
allowlist: 'dependabot[bot],github-actions[bot],claude,copilot,copilot-swe-agent[bot]'

# Custom text for the CLA comment
custom-pr-sign-comment: 'I have read the CLA Document and I hereby sign the CLA'
Expand Down
14 changes: 3 additions & 11 deletions .github/workflows/claude-code-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,8 @@ on:
required: false
default: 'false'
type: boolean
# Run on PRs that modify core code
pull_request:
branches: ["*"]
paths:
- 'src/deepwork/**'
- 'tests/**'
- '.github/workflows/claude-code-test.yml'
# Scheduled run for continuous validation
schedule:
- cron: '0 6 * * 1' # Weekly on Monday at 6 AM UTC
# Run in the merge queue to validate before merging
merge_group:

# Ensure only one instance runs at a time per PR/branch
concurrency:
Expand Down Expand Up @@ -91,7 +83,7 @@ jobs:
claude-code-e2e:
runs-on: ubuntu-latest
needs: validate-generation
if: github.event_name == 'workflow_dispatch' || github.event_name == 'schedule'
if: github.event_name == 'workflow_dispatch' || github.event_name == 'merge_group'
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Validate

on:
pull_request:
merge_group:

jobs:
tests:
Expand Down
Loading