File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change 6
6
- main
7
7
pull_request :
8
8
jobs :
9
- call-workflow :
10
- uses : craftcms/.github/.github/workflows/ci.yml@v1
9
+ ecs :
10
+ name : ECS
11
+ uses : craftcms/.github/.github/workflows/ecs.yml@v1
12
+ phpstan :
13
+ name : PHPStan
14
+ uses : craftcms/.github/.github/workflows/phpstan.yml@v1
15
+ notify-slack :
16
+ name : Notify Slack
17
+ needs : [ ecs, phpstan ]
18
+ uses : craftcms/.github/.github/workflows/notify-slack.yml@v1
11
19
with :
12
- run_ecs : true
13
- run_phpstan : true
20
+ success : ${{ needs.ecs.result == 'success' && needs.phpstan.result == 'success' }}
14
21
secrets :
15
- slack_webhook_url : ${{ secrets.SLACK_WEBHOOK_URL }}
22
+ token : ${{ secrets.GITHUB_TOKEN }}
23
+ slack_webhook_url : ${{ secrets.SLACK_PLUGIN_WEBHOOK_URL }}
24
+ slack_group_id : ${{ secrets.SLACK_GROUP_ID }}
You can’t perform that action at this time.
0 commit comments