diff --git a/.github/workflows/feature_powerset.yml b/.github/workflows/feature_powerset.yml index d38e17a5..33096531 100644 --- a/.github/workflows/feature_powerset.yml +++ b/.github/workflows/feature_powerset.yml @@ -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' }}