File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 66 merge_group :
77 schedule :
88 - cron : ' 0 0 * * *' # Every day at midnight UTC
9-
9+ # allow manual triggering with a given environment
10+ workflow_dispatch :
11+ inputs :
12+ environment :
13+ required : true
14+ type : environment
15+ env :
16+ environment : ${{ github.event_name == 'workflow_dispatch' && inputs.environment || 'Staging' }}
1017name : CI
1118jobs :
1219
1320 test :
21+ environment :
22+ name : ${{ env.environment }}
1423 runs-on : ubuntu-latest
1524 steps :
1625 - name : Check out source code
3443 run : pdm run test-docs
3544
3645 license :
46+ environment :
47+ name : ${{ env.environment }}
3748 runs-on : ubuntu-latest
3849 steps :
3950 - name : Check out source code
4455 run : ./tools/license_check.sh
4556
4657 test-submit :
58+ environment :
59+ name : ${{ env.environment }}
4760 uses : ./.github/workflows/test-examples.yml
4861 with :
4962 CHIPFLOW_API_ORIGIN : ${{ vars.CHIPFLOW_API_ORIGIN }}
Original file line number Diff line number Diff line change 88 inputs :
99 CHIPFLOW_API_ORIGIN :
1010 required : true
11+ type : string
1112 CHIPFLOW_BACKEND_VERSION :
1213 required : true
14+ type : string
1315
1416
1517jobs :
You can’t perform that action at this time.
0 commit comments