Skip to content

Commit 6a6e20c

Browse files
committed
feat(ci): add actionlint workflow linter
- New workflow that runs actionlint on GitHub workflow file changes - Runs on push and pull_request events to .github/workflows/** 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
1 parent 3a5aea7 commit 6a6e20c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Lint Workflows
2+
3+
on:
4+
push:
5+
paths:
6+
- '.github/workflows/**'
7+
pull_request:
8+
paths:
9+
- '.github/workflows/**'
10+
11+
jobs:
12+
actionlint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v5
16+
17+
- name: Run actionlint
18+
uses: rhysd/actionlint-action@v1
19+
with:
20+
fail-on-warning: false

0 commit comments

Comments
 (0)