File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed
Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 55 - cron : 0 0 * * *
66 workflow_dispatch :
77 inputs :
8- prerelease_commit_sha :
8+ commit_sha :
99 required : false
10+ type : string
1011
1112env :
1213 TZ : /usr/share/zoneinfo/America/Los_Angeles
1516
1617jobs :
1718 download_build :
18- if : inputs.prerelease_commit_sha == ''
1919 name : Download base build
2020 runs-on : ubuntu-latest
2121 steps :
3737 - name : Download react-devtools artifacts for base revision
3838 run : |
3939 git fetch origin main
40- GH_TOKEN=${{ github.token }} scripts/release/download-experimental-build.js --commit=$(git rev-parse origin/main)
40+ GH_TOKEN=${{ github.token }} scripts/release/download-experimental-build.js --commit=${{ inputs.commit_sha || '$ (git rev-parse origin/main)' }}
4141 - name : Display structure of build
4242 run : ls -R build
4343 - name : Archive build
Original file line number Diff line number Diff line change 66 types : [completed]
77 branches :
88 - main
9+ workflow_dispatch :
10+ inputs :
11+ commit_sha :
12+ required : false
13+ type : string
914
1015env :
1116 TZ : /usr/share/zoneinfo/America/Los_Angeles
7277 working-directory : scripts/release
7378 - name : Download artifacts for base revision
7479 run : |
75- GH_TOKEN=${{ github.token }} scripts/release/download-experimental-build.js --commit=${{ github.event.workflow_run.head_sha }}
80+ GH_TOKEN=${{ github.token }} scripts/release/download-experimental-build.js --commit=${{ inputs.commit_sha || github.event.workflow_run.head_sha }}
7681 - name : Display structure of build
7782 run : ls -R build
7883 - name : Strip @license from eslint plugin and react-refresh
Original file line number Diff line number Diff line change 11name : (Runtime) Fuzz tests
2+
23on :
34 schedule :
4- - cron : 0 * * * *
5+ - cron : 0 * * * *
56 push :
67 branches :
78 - main
89 workflow_dispatch :
9- inputs :
10- prerelease_commit_sha :
11- required : false
1210
1311env :
1412 TZ : /usr/share/zoneinfo/America/Los_Angeles
1513
1614jobs :
1715 test_fuzz :
18- if : inputs.prerelease_commit_sha == ''
1916 runs-on : ubuntu-latest
20- env :
21- TZ : " /usr/share/zoneinfo/America/Los_Angeles"
2217 steps :
23182419 - uses : actions/setup-node@v4
Original file line number Diff line number Diff line change 44 schedule :
55 # Run hourly
66 - cron : ' 0 * * * *'
7+ workflow_dispatch :
78
89env :
910 TZ : /usr/share/zoneinfo/America/Los_Angeles
You can’t perform that action at this time.
0 commit comments