Skip to content

Commit cf503d8

Browse files
committed
chore: add actionlint and dependabot
1 parent 5032090 commit cf503d8

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
groups:
8+
github-actions:
9+
patterns:
10+
- "*"

.github/workflows/actionlint.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- .github/workflows/**
7+
push:
8+
branches:
9+
- main
10+
paths:
11+
- .github/workflows/**
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
actionlint:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- uses: raven-actions/actionlint@v2

0 commit comments

Comments
 (0)