Skip to content

Commit 62b5df5

Browse files
leonardocouyclaude
andcommitted
fix(ci): skip dist/ validation on push to main
The auto-bump workflow already rebuilds and commits dist/ on main pushes. Running the validation in CI on the same event causes a race condition where CI fails before auto-bump has a chance to commit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7e4ba85 commit 62b5df5

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/main.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
python-version: '3.12'
4242

4343
- name: Validate dist/ is up to date
44+
if: github.event_name == 'pull_request'
4445
run: |
4546
python3 scripts/build_plugins.py
4647
if ! git diff --quiet dist/ .claude-plugin/marketplace.json; then

0 commit comments

Comments
 (0)