File tree Expand file tree Collapse file tree 4 files changed +21
-4
lines changed
Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,11 @@ permissions:
33 id-token : write
44 contents : read
55on :
6- merge_group :
7- branches : [ "main" ]
6+ push :
7+ branches :
8+ - main
89 workflow_dispatch :
10+ workflow_call :
911jobs :
1012 e2e-test :
1113 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11name : presubmit
22on :
3- pull_request :
4- branches : [ "main" ]
53 workflow_dispatch :
4+ workflow_call :
65jobs :
76 golangci-lint :
87 name : golangci-lint
Original file line number Diff line number Diff line change 1+ name : Validate code in the merge queue with e2e-test
2+ permissions :
3+ id-token : write
4+ contents : read
5+ on :
6+ merge_group :
7+ branches : [ "main" ]
8+ jobs :
9+ validate :
10+ uses : ./.github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change 1+ name : Validate pull request with presubmit before putting into queue
2+ on :
3+ pull_request :
4+ jobs :
5+ validate :
6+ uses : ./.github/workflows/presubmit.yaml
You can’t perform that action at this time.
0 commit comments