File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ const response = await fetch ( 'https://wpt.fyi/api/metadata?includeTestLevel=true&product=chrome' ) ;
3
+ const labels = await response . json ( ) ;
4
+
5
+ console . log ( labels ) ;
Original file line number Diff line number Diff line change
1
+ name : release
2
+ on : workflow_dispatch
3
+ jobs :
4
+ prepare :
5
+ runs-on : ubuntu-latest
6
+ steps :
7
+ - uses : actions/checkout@v3
8
+ with :
9
+ fetch-depth : 0
10
+ - uses : actions/setup-node@v3
11
+ with :
12
+ node-version : 16
13
+ - run : npm ci
14
+ - name : git config
15
+ run : |
16
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
17
+ git config user.name "github-actions[bot]"
18
+ - run : node release.js --no-fetch --no-prompt
19
+ env :
20
+ GH_TOKEN : ${{secrets.GITHUB_TOKEN}}
21
+ env :
22
+ FORCE_COLOR : 3
You can’t perform that action at this time.
0 commit comments