generated from actions/container-action
-
-
Notifications
You must be signed in to change notification settings - Fork 3
39 lines (34 loc) · 1.03 KB
/
actionlint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Lint workflow files
on:
push:
branches:
- master
paths:
- .github/workflows/**
pull_request:
types: [ opened, synchronize, reopened ] # Same as default
paths:
- .github/workflows/**
jobs:
actionlint:
runs-on: ubuntu-latest
permissions:
contents: read
actions: read
steps:
- uses: actions/checkout@v4
- name: Lint workflow files
shell: bash
run: |
bash <(curl -LsS --retry 2 https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
./actionlint -color
- uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
fields: repo,message,job,pullRequest
mention: here
if_mention: failure
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: failure() && github.event.pull_request.head.repo.fork == false # Skip on public fork, because can not read secrets.