We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30bcc60 commit 21177e9Copy full SHA for 21177e9
.github/workflows/yamllint.yml
@@ -18,7 +18,7 @@ jobs:
18
name: Validate YAML files
19
runs-on: ubuntu-latest
20
steps:
21
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
22
- name: Validate YAML files
23
run: |
24
if [ -f .yamllint.yml ]; then
@@ -29,4 +29,16 @@ jobs:
29
yamllint -d "{extends: relaxed, rules: {line-length: disable}}" .
30
fi
31
32
+ notify:
33
+ needs: [validate-yaml]
34
+ if: failure()
35
+ runs-on: ubuntu-20.04
36
+ steps:
37
+ - name: Notify
38
+ uses: mobsuccess-devops/github-actions-notify@master
39
+ with:
40
+ notify-type: "workflow-failure"
41
+ slack-token: ${{ secrets.SLACK_TOKEN_MSBOT }}
42
+ slack-channel: ${{ vars.SLACK_CHANNEL_NOTIFY_WORKFLOW_FAIL }}
43
+ platform-pat: ${{ secrets.MS_PLATFORM_LIST_USERS_PAT }}
44
# DO NOT EDIT: END
0 commit comments