Skip to content

Commit

Permalink
Remove invalid test
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmygchen committed Aug 24, 2023
1 parent 9605c1e commit 645cfdb
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ${{ fromJson(needs.test.outputs.use-runner )}}
steps:
- name: Do something
run: echo "Doing something on ${{ fromJson(needs.test.outputs.use-runner) }}"
run: echo "Doing something on ${{ needs.test.outputs.use-runner }}"

test-multiple-labels:
runs-on: ubuntu-latest
Expand All @@ -52,10 +52,3 @@ jobs:
github-token: ${{ secrets.TEST_GITHUB_TOKEN }}
- name: Check output
run: echo "Runner to use is ${{ steps.test-action.outputs.use-runner }}"

test-multiple-labels-output:
needs: test-multiple-labels
runs-on: ${{ fromJson(needs.test-multiple-labels.outputs.use-runner )}}
steps:
- name: Do something
run: echo "Doing something on ${{ fromJson(needs.test-multiple-labels.outputs.use-runner) }}"

0 comments on commit 645cfdb

Please sign in to comment.