WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
File tree Expand file tree Collapse file tree 14 files changed +41
-33
lines changed
Expand file tree Collapse file tree 14 files changed +41
-33
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ name: Build
33on :
44 workflow_call :
55
6- permissions :
7- contents : read
8-
96jobs :
107 build :
118 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ name: Code Quality
33on :
44 pull_request :
55
6+ permissions :
7+ contents : read
8+
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : true
12+
613jobs :
714 trufflehog :
815 uses : ./.github/workflows/jobs/truffle-hog.yml
Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ name: Coding Standards
33on :
44 pull_request :
55
6+ permissions :
7+ contents : read
8+
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : true
12+
613jobs :
714 stylelint :
815 uses : ./.github/workflows/jobs/stylelint.yml
Original file line number Diff line number Diff line change 1010 required : true
1111 type : string
1212
13- permissions :
14- contents : read
15-
1613jobs :
1714 deploy :
1815 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 55 branches :
66 - develop
77
8+ permissions :
9+ contents : read
10+
11+ concurrency :
12+ group : ${{ github.workflow }}-${{ github.ref }}
13+ cancel-in-progress : true
14+
815jobs :
916 lint :
1017 uses : ./.github/workflows/coding-standards.yml
@@ -14,11 +21,11 @@ jobs:
1421 needs : lint
1522
1623 build :
17- uses : ./.github/workflows/jobs/ build.yml
24+ uses : ./.github/workflows/build.yml
1825 needs : test
1926
2027 deploy :
21- uses : ./.github/workflows/jobs/ deploy.yml
28+ uses : ./.github/workflows/deploy.yml
2229 needs : build
2330 with :
2431 name : develop
Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ name: JavaScript Coding Standards
33on :
44 workflow_call :
55
6- permissions :
7- contents : read
8-
96jobs :
107 eslint :
118 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ name: JavaScript Unit Tests
33on :
44 workflow_call :
55
6- permissions :
7- contents : read
8-
96jobs :
107 jest :
118 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ name: PHP Coding Standards
33on :
44 workflow_call :
55
6- permissions :
7- contents : read
8-
96jobs :
107 phpcs :
118 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ name: PHP Static Analysis
33on :
44 workflow_call :
55
6- permissions :
7- contents : read
8-
96jobs :
107 phpstan :
118 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 55 branches :
66 - trunk
77
8+ permissions :
9+ contents : read
10+
11+ concurrency :
12+ group : ${{ github.workflow }}-${{ github.ref }}
13+ cancel-in-progress : true
14+
815jobs :
916 lint :
1017 uses : ./.github/workflows/coding-standards.yml
@@ -14,11 +21,11 @@ jobs:
1421 needs : lint
1522
1623 build :
17- uses : ./.github/workflows/jobs/ build.yml
24+ uses : ./.github/workflows/build.yml
1825 needs : test
1926
2027 deploy :
21- uses : ./.github/workflows/jobs/ deploy.yml
28+ uses : ./.github/workflows/deploy.yml
2229 needs : build
2330 with :
2431 name : production
You can’t perform that action at this time.
0 commit comments