-
-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (34 loc) · 848 Bytes
/
actionlint.yml
File metadata and controls
41 lines (34 loc) · 848 Bytes
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
# Copyright (c) 2021-2026 Koji Hasegawa.
# This software is released under the MIT License.
name: Lint workflow files
on:
push:
branches:
- master
paths:
- .github/workflows/**
pull_request:
types: [ opened, synchronize, reopened ] # Same as default
paths:
- .github/workflows/**
permissions: {}
defaults:
run:
shell: bash
jobs:
actionlint:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: read
pull-requests: write
actions: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
submodules: false
lfs: false
- uses: reviewdog/action-actionlint@6fb7acc99f4a1008869fa8a0f09cfca740837d9d # v1
with:
reporter: github-pr-review
fail_level: error