File tree Expand file tree Collapse file tree 4 files changed +45
-157
lines changed
Expand file tree Collapse file tree 4 files changed +45
-157
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Deploy
2+ on :
3+ push :
4+ branches :
5+ - main
6+ workflow_dispatch :
7+ inputs :
8+ environment_name :
9+ description : Environment
10+ required : true
11+ type : choice
12+ options :
13+ - dev
14+ - stg
15+ - qa
16+ - prod
17+ jobs :
18+ deploy :
19+ uses : fun-dotto/way/.github/workflows/backend-deploy.yml@main
20+ permissions :
21+ contents : read
22+ id-token : write
23+ with :
24+ environment_name : ${{ github.event.inputs.environment_name }}
25+ secrets : inherit
Original file line number Diff line number Diff line change 1+ name : Test
2+ on :
3+ push :
4+ branches :
5+ - main
6+ pull_request :
7+ branches :
8+ - main
9+ types :
10+ - opened
11+ - ready_for_review
12+ - reopened
13+ - synchronize
14+ workflow_dispatch :
15+ jobs :
16+ test :
17+ uses : fun-dotto/way/.github/workflows/backend-test.yml@main
18+ permissions :
19+ contents : read
20+ secrets : inherit
You can’t perform that action at this time.
0 commit comments