File tree Expand file tree Collapse file tree 7 files changed +110
-49
lines changed
Expand file tree Collapse file tree 7 files changed +110
-49
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Build and Test
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - trunk
8+ - release
9+ - alpha
10+ - ' hotfix/**'
11+ - ' epic/**'
12+
13+ concurrency :
14+ group : ${{ github.workflow }}-${{ github.ref }}
15+ cancel-in-progress : true
16+
17+ jobs :
18+ build :
19+ uses : Automattic/newspack-scripts/.github/workflows/reusable-build.yml@trunk
20+
21+ lint-js-scss :
22+ needs : build
23+ uses : Automattic/newspack-scripts/.github/workflows/reusable-lint-js-scss.yml@trunk
24+
Original file line number Diff line number Diff line change 1+ name : Build distributable
2+
3+ on :
4+ pull_request :
5+
6+ concurrency :
7+ group : ${{ github.workflow }}-${{ github.ref }}
8+ cancel-in-progress : true
9+
10+ jobs :
11+ build-distributable :
12+ uses : Automattic/newspack-scripts/.github/workflows/reusable-build-distributable.yml@trunk
13+ with :
14+ archive-name : newspack-block-theme
15+
Original file line number Diff line number Diff line change 1+ name : Internationalization
2+
3+ on :
4+ push :
5+ branches :
6+ - trunk
7+
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.ref }}
10+ cancel-in-progress : true
11+
12+ jobs :
13+ i18n :
14+ uses : Automattic/newspack-scripts/.github/workflows/reusable-i18n.yml@trunk
15+ secrets :
16+ GIT_COMMITTER_TOKEN : ${{ secrets.GIT_COMMITTER_TOKEN }}
Original file line number Diff line number Diff line change 1+ name : PHP
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - trunk
8+ - release
9+ - alpha
10+ - ' hotfix/**'
11+ - ' epic/**'
12+
13+ concurrency :
14+ group : ${{ github.workflow }}-${{ github.ref }}
15+ cancel-in-progress : true
16+
17+ jobs :
18+ lint-php :
19+ uses : Automattic/newspack-scripts/.github/workflows/reusable-lint-php.yml@trunk
20+
Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ push :
5+ branches :
6+ - release
7+ - alpha
8+ - ' hotfix/**'
9+ - ' epic/**'
10+
11+ concurrency :
12+ group : ${{ github.workflow }}-${{ github.ref }}
13+ cancel-in-progress : true
14+
15+ jobs :
16+ build :
17+ uses : Automattic/newspack-scripts/.github/workflows/reusable-build.yml@trunk
18+
19+ release :
20+ needs : build
21+ uses : Automattic/newspack-scripts/.github/workflows/reusable-release.yml@trunk
22+ secrets :
23+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
24+
25+ post-release :
26+ if : github.ref == 'refs/heads/release'
27+ needs : release
28+ uses : Automattic/newspack-scripts/.github/workflows/reusable-post-release.yml@trunk
29+ secrets :
30+ GIT_COMMITTER_TOKEN : ${{ secrets.GIT_COMMITTER_TOKEN }}
31+ SLACK_CHANNEL_ID : ${{ secrets.SLACK_CHANNEL_ID }}
32+ SLACK_AUTH_TOKEN : ${{ secrets.SLACK_AUTH_TOKEN }}
You can’t perform that action at this time.
0 commit comments