Skip to content

Commit

Permalink
Remove debugging outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski committed Mar 31, 2024
1 parent 1059f79 commit af913fb
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/feature_powerset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,12 @@ jobs:
if: ${{ github.event_name == 'schedule' }}
run: test $(git rev-list --after="7 days" ${{ github.sha }}) && echo "should_run=true" >> "$GITHUB_OUTPUT"

- name: print label
run: echo ${{ github.event.label.name }}
- id: label_trigger
continue-on-error: true
name: Check that the powerset_check label was added
if: ${{ github.event_name == 'pull_request' && github.event.label.name == 'powerset_check' }}
run: echo "should_run=true" >> "$GITHUB_OUTPUT"

check_output:
runs-on: ubuntu-latest
needs: check_trigger
steps:
- run: echo ${{ needs.check_trigger.outputs.should_run1 }}
- run: echo ${{ needs.check_trigger.outputs.should_run2 }}
- run: echo ${{ needs.check_trigger.outputs.should_run1 == 'true'}}
- run: echo ${{ needs.check_trigger.outputs.should_run2 == 'true' }}

roadster_feature_powerset:
needs: check_trigger
if: ${{ needs.check_trigger.outputs.should_run1 == 'true' || needs.check_trigger.outputs.should_run2 == 'true' || github.event_name == 'workflow_dispatch' }}
Expand Down

0 comments on commit af913fb

Please sign in to comment.