Skip to content

Commit

Permalink
fix: prevent repeated CI runs (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
st3v3nmw authored Feb 3, 2025
1 parent 8eab26d commit ebb3940
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/sphinx-python-dependency-build-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@
# available, and as such we need to make sure building wheels from source can
# succeed.
name: Sphinx python dependency build checks

on:
- push
- pull_request
- workflow_dispatch
push:
branches: [ main ]
pull_request:
workflow_dispatch: # manual trigger

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test-starter-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
name: Test starter pack

on:
- pull_request
- push
push:
branches: [ main ]
pull_request:

jobs:
test-docs:
Expand Down

0 comments on commit ebb3940

Please sign in to comment.