File tree Expand file tree Collapse file tree 1 file changed +18
-19
lines changed
Expand file tree Collapse file tree 1 file changed +18
-19
lines changed Original file line number Diff line number Diff line change 99 - unlabeled
1010
1111jobs :
12- parse-labels :
13- runs-on : ubuntu-latest
14- container :
15- image : node:20
16- env :
17- PR_LABELS : ${{ toJSON(github.event.pull_request.labels.*.name) }}
18- outputs :
19- args : ${{ steps.npm-workspace-args.outputs.args }}
20- steps :
21- - name : Checkout
22- uses : actions/checkout@v4
23- - name : Parse labels into npm workspace arguments
24- id : npm-workspace-args
25- run : |
26- OUTPUT=`node scripts/pr-labels-to-npm-workspace-args.mjs "$PR_LABELS"`
27- echo "args=$OUTPUT" >> $GITHUB_OUTPUT
12+ # parse-labels:
13+ # runs-on: ubuntu-latest
14+ # container:
15+ # image: node:20
16+ # env:
17+ # PR_LABELS: ${{ toJSON(github.event.pull_request.labels.*.name) }}
18+ # outputs:
19+ # args: ${{ steps.npm-workspace-args.outputs.args }}
20+ # steps:
21+ # - name: Checkout
22+ # uses: actions/checkout@v4
23+ # - name: Parse labels into npm workspace arguments
24+ # id: npm-workspace-args
25+ # run: |
26+ # OUTPUT=`node scripts/pr-labels-to-npm-workspace-args.mjs "$PR_LABELS"`
27+ # echo "args=$OUTPUT" >> $GITHUB_OUTPUT
2828
2929 tav :
3030 uses : ./.github/workflows/test-all-versions.yml
31- needs : parse-labels
31+ # needs: parse-labels
3232 with :
33- npm-workspace-args : ${{ needs.parse-labels.outputs.args }}
34- if : ${{ needs.parse-labels.outputs.args != '' }}
33+ npm-workspace-args : " @opentelemetry/instrumentation-undici"
You can’t perform that action at this time.
0 commit comments