File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11---
22name : " Basic Code Quality Checks"
33
4- on : # yamllint disable-line rule:truthy
4+ on : # yamllint disable-line rule:truthy
55 workflow_call :
66 secrets :
77 CHECKER_TOKEN :
@@ -41,11 +41,11 @@ permissions:
4141 pull-requests : write
4242 issues : write
4343
44- jobs : # yamllint disable-line rule:line-length
44+ jobs : # yamllint disable-line rule:line-length
4545 basic-checks :
4646 name : " Basic Code Quality Checks"
4747 runs-on : ubuntu-latest
48- outputs : # yamllint disable rule:line-length
48+ outputs : # yamllint disable rule:line-length
4949 pr-title-status : ${{ steps.basic-checks.outputs.pr-title-status }}
5050 pr-title-summary : ${{ steps.basic-checks.outputs.pr-title-summary }}
5151 branch-name-status : ${{ steps.basic-checks.outputs.branch-name-status }}
@@ -62,7 +62,7 @@ jobs: # yamllint disable-line rule:line-length
6262
6363 - name : Run Basic Code Quality Checks
6464 id : basic-checks
65- uses : ./ .github/actions/basic-checks
65+ uses : sessatakuma/org-workflows/ .github/actions/basic-checks@main
6666 with :
6767 pr-title : ${{ github.event.pull_request.title }}
6868 branch-name : ${{ github.head_ref }}
Original file line number Diff line number Diff line change 11---
2- name : ' Configuration Files Quality Checks'
2+ name : " Configuration Files Quality Checks"
33
4- on : # yamllint disable-line rule:truthy
4+ on : # yamllint disable-line rule:truthy
55 workflow_call :
66 secrets :
77 CHECKER_TOKEN :
8- description : ' The GITHUB_TOKEN passed from the caller'
8+ description : " The GITHUB_TOKEN passed from the caller"
99 required : true
1010 outputs :
1111 yaml-status :
@@ -34,7 +34,7 @@ permissions:
3434
3535jobs :
3636 config-checks :
37- name : ' Configuration Files Quality Checks'
37+ name : " Configuration Files Quality Checks"
3838 runs-on : ubuntu-latest
3939 outputs :
4040 yaml-status : ${{ steps.config-checks.outputs.yaml-status }}
4949
5050 - name : Run Config Checks
5151 id : config-checks
52- uses : ./ .github/actions/config-checks
52+ uses : sessatakuma/org-workflows/ .github/actions/config-checks@main
Original file line number Diff line number Diff line change 11---
2- name : ' Frontend Code Quality Checks'
2+ name : " Frontend Code Quality Checks"
33
4- on : # yamllint disable-line rule:truthy
4+ on : # yamllint disable-line rule:truthy
55 workflow_call :
66 inputs :
77 node-version :
8- description : ' The Node.js version to use'
8+ description : " The Node.js version to use"
99 required : false
1010 type : string
11- default : ' 20 '
11+ default : " 20 "
1212 secrets :
1313 CHECKER_TOKEN :
14- description : ' The GITHUB_TOKEN passed from the caller'
14+ description : " The GITHUB_TOKEN passed from the caller"
1515 required : true
1616 outputs :
1717 prettier-status :
8181 }
8282 ];
8383
84-
8584jobs :
8685 frontend-checks :
87- name : ' Frontend Code Quality Checks'
86+ name : " Frontend Code Quality Checks"
8887 runs-on : ubuntu-latest
8988 # yamllint disable rule:line-length
9089 outputs :
9695 steps :
9796 - name : Run Frontend Checks
9897 id : frontend-checks
99- uses : ./ .github/actions/frontend-checks
98+ uses : sessatakuma/org-workflows/ .github/actions/frontend-checks@main
10099 with :
101100 node-version : ${{ inputs.node-version }}
Original file line number Diff line number Diff line change 11---
22name : " Reusable Go Checks"
33
4- on : # yamllint disable-line rule:truthy
4+ on : # yamllint disable-line rule:truthy
55 workflow_call :
66 inputs :
77 go-version :
4444
4545 - name : Run Go Checks
4646 id : run-checks
47- uses : ./ .github/actions/go-checks
47+ uses : sessatakuma/org-workflows/ .github/actions/go-checks@main
4848 with :
4949 go-version : ${{ inputs.go-version }}
5050 working-directory : ${{ inputs.working-directory }}
Original file line number Diff line number Diff line change 11---
22name : " Python Code Quality Checks"
33
4- on : # yamllint disable-line rule:truthy
4+ on : # yamllint disable-line rule:truthy
55 workflow_call :
66 inputs :
77 python-version :
3939
4040 - name : Run Python Checks
4141 id : run-checks
42- uses : ./ .github/actions/python-checks
42+ uses : sessatakuma/org-workflows/ .github/actions/python-checks@main
4343 with :
4444 python-version : ${{ inputs.python-version }}
You can’t perform that action at this time.
0 commit comments