File tree Expand file tree Collapse file tree 2 files changed +18
-8
lines changed Expand file tree Collapse file tree 2 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 5
5
.gitignore export-ignore
6
6
.travis.yml export-ignore
7
7
CHANGELOG.md export-ignore
8
+ README.md export-ignore
9
+ SECURITY.md export-ignore
8
10
codeception.yml export-ignore
9
11
composer.lock export-ignore
10
12
ecs.php export-ignore
11
13
gruntfile.js export-ignore
12
14
gulpfile.js export-ignore
13
- package.json export-ignore
14
15
package-lock.json export-ignore
15
- README.md export-ignore
16
- SECURITY.md export-ignore
16
+ package.json export-ignore
17
+ phpstan.neon export-ignore
17
18
tests / export-ignore
18
19
19
20
# Auto detect text files and perform LF normalization
Original file line number Diff line number Diff line change 7
7
- ' 3.0'
8
8
pull_request :
9
9
jobs :
10
- call-workflow :
11
- uses : craftcms/.github/.github/workflows/ci.yml@v1
10
+ ecs :
11
+ name : ECS
12
+ uses : craftcms/.github/.github/workflows/ecs.yml@v1
13
+ phpstan :
14
+ name : PHPStan
15
+ uses : craftcms/.github/.github/workflows/phpstan.yml@v1
16
+ notify-slack :
17
+ name : Notify Slack
18
+ needs : [ ecs, phpstan ]
19
+ uses : craftcms/.github/.github/workflows/notify-slack.yml@v1
12
20
with :
13
- run_ecs : true
14
- run_phpstan : true
21
+ success : ${{ needs.ecs.result == 'success' && needs.phpstan.result == 'success' }}
15
22
secrets :
16
- slack_webhook_url : ${{ secrets.SLACK_WEBHOOK_URL }}
23
+ token : ${{ secrets.GITHUB_TOKEN }}
24
+ slack_webhook_url : ${{ secrets.SLACK_PLUGIN_WEBHOOK_URL }}
25
+ slack_group_id : ${{ secrets.SLACK_GROUP_ID }}
You can’t perform that action at this time.
0 commit comments