Skip to content

Commit 7a63a3c

Browse files
committed
chore: test TAV workflow
1 parent f8ac439 commit 7a63a3c

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

.github/workflows/test-all-versions.pr.yml

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,25 @@ on:
99
- unlabeled
1010

1111
jobs:
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"

0 commit comments

Comments
 (0)