-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 989 Bytes
/
lint.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
40
41
42
name: Linter
on:
pull_request:
types:
# - edited # PR's base branch was changed
- opened
- reopened
- synchronize # PR's branch was edited (i.e. new commits)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
renovate-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rinchsan/[email protected]
with:
pattern: 'renovate.json5'
workflow-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- run: go install github.com/rhysd/actionlint/cmd/actionlint@latest
- run: actionlint
# !!! This check should be required by GitHub !!!
linter-status-check:
if: always()
needs:
- renovate-lint
- workflow-lint
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}