Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Sep 8, 2023
1 parent b3afd75 commit 1c32351
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/subset_list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
one:
runs-on: ubuntu-latest
needs: [check]
if: always() && (needs.check.outputs.no_skip == 'true' || contains(fromJSON(needs.check.outputs.run_list), github.job))
if: always() && (needs.check.outputs.no_skip == 'true' || contains(fromJSON(needs.check.outputs.run_list), 'one'))
steps:
- name: Run
run: echo ran ${{ github.job }}!
Expand All @@ -41,7 +41,7 @@ jobs:
needs: [check,one]
if: |
always() && (needs.check.outputs.no_skip == 'true' ||
contains(fromJSON(needs.check.outputs.run_list), github.job))
contains(fromJSON(needs.check.outputs.run_list), 'two'))
steps:
- name: Run
run: echo ran ${{ github.job }}!
Expand Down

0 comments on commit 1c32351

Please sign in to comment.