Skip to content

Commit

Permalink
ci: always run pull request job
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Jun 21, 2024
1 parent 2b1922d commit 854190f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 12 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
do_not_skip: '["pull_request"]'

test:
needs: pre_job
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/CI_Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
do_not_skip: '["pull_request"]'

test:
needs: pre_job
Expand Down
12 changes: 0 additions & 12 deletions .github/workflows/CI_conda_forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,7 @@ on:
workflow_dispatch:

jobs:
pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'

conda_test:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ${{ matrix.os }}
timeout-minutes: 60
defaults:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/CI_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
do_not_skip: '["pull_request"]'

test:
needs: pre_job
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/CI_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
do_not_skip: '["pull_request"]'

test:
needs: pre_job
Expand Down

0 comments on commit 854190f

Please sign in to comment.