File tree Expand file tree Collapse file tree 5 files changed +37
-3
lines changed Expand file tree Collapse file tree 5 files changed +37
-3
lines changed Original file line number Diff line number Diff line change 4343 with :
4444 push_image : true
4545 push_image_tag : ${{ inputs.tag }}
46+ disable_cilint : true
4647 secrets : inherit
4748
4849 release-frontends :
5960 with :
6061 push_image : true
6162 push_image_tag : ${{ inputs.tag }}
63+ disable_cilint : true
6264 secrets : inherit
6365
6466 release-webhook :
6769 with :
6870 push_image : true
6971 push_image_tag : ${{ inputs.tag }}
72+ disable_cilint : true
7073 secrets : inherit
7174
7275 release-cloud :
Original file line number Diff line number Diff line change 1313 default : " latest"
1414 required : false
1515 type : string
16+ disable_cilint :
17+ description : " Disable golangci-lint"
18+ default : false
19+ required : false
20+ type : boolean
1621 workflow_dispatch :
1722 inputs :
1823 push_image :
2530 default : " latest"
2631 required : false
2732 type : string
33+ disable_cilint :
34+ description : " Disable golangci-lint"
35+ default : false
36+ required : false
37+ type : boolean
2838 push :
2939 branches : ["main"]
3040 paths :
6373 run : bash scripts/resolve-modules.sh ./controllers
6474
6575 golangci-lint :
66- if : ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
76+ if : ${{ !inputs.disable_cilint && ( github.event_name == 'push' || github.event_name == 'pull_request') }}
6777 needs : [resolve-modules]
6878 runs-on : ubuntu-24.04
6979 strategy :
Original file line number Diff line number Diff line change 5050 USERNAME : ${{ github.repository_owner }}
5151 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5252 FURY_TOKEN : ${{ secrets.FURY_TOKEN }}
53+
5354 cloud-release :
5455 uses : ./.github/workflows/cloud-release.yml
5556 needs :
Original file line number Diff line number Diff line change 1313 default : " latest"
1414 required : false
1515 type : string
16+ disable_cilint :
17+ description : " Disable golangci-lint"
18+ default : false
19+ required : false
20+ type : boolean
1621 workflow_dispatch :
1722 inputs :
1823 push_image :
2530 default : " latest"
2631 required : false
2732 type : string
33+ disable_cilint :
34+ description : " Disable golangci-lint"
35+ default : false
36+ required : false
37+ type : boolean
2838 push :
2939 branches : ["main"]
3040 paths :
6171 run : bash scripts/resolve-modules.sh ./service
6272
6373 golangci-lint :
64- if : ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
74+ if : ${{ !inputs.disable_cilint && ( github.event_name == 'push' || github.event_name == 'pull_request') }}
6575 needs : [resolve-modules]
6676 runs-on : ubuntu-24.04
6777 strategy :
Original file line number Diff line number Diff line change 1313 default : " latest"
1414 required : false
1515 type : string
16+ disable_cilint :
17+ description : " Disable golangci-lint"
18+ default : false
19+ required : false
20+ type : boolean
1621 workflow_dispatch :
1722 inputs :
1823 push_image :
2530 default : " latest"
2631 required : false
2732 type : string
33+ disable_cilint :
34+ description : " Disable golangci-lint"
35+ default : false
36+ required : false
37+ type : boolean
2838 push :
2939 branches : [ "main" ]
3040 paths :
6272 run : bash ./scripts/resolve-modules.sh ./webhooks
6373
6474 golangci-lint :
65- if : ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
75+ if : ${{ !inputs.disable_cilint && ( github.event_name == 'push' || github.event_name == 'pull_request') }}
6676 needs : [ resolve-modules ]
6777 runs-on : ubuntu-24.04
6878 strategy :
You can’t perform that action at this time.
0 commit comments