Skip to content

Commit 240a218

Browse files
committed
forgot files
1 parent 29eba1e commit 240a218

File tree

3 files changed

+58
-0
lines changed

3 files changed

+58
-0
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [LouisBrunner]

.github/dependabot.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: 'github-actions'
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
groups:
8+
actions-deps:
9+
patterns:
10+
- '*'
11+
12+
- package-ecosystem: npm
13+
directory: /
14+
schedule:
15+
interval: monthly
16+
groups:
17+
security-updates:
18+
applies-to: security-updates
19+
patterns:
20+
- '*'
21+
major-updates:
22+
applies-to: version-updates
23+
update-types:
24+
- 'major'
25+
minor-updates:
26+
applies-to: version-updates
27+
update-types:
28+
- 'minor'
29+
- 'patch'

.github/workflows/lint-gha.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Lint Github Actions
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- ".github/**"
8+
pull_request:
9+
paths:
10+
- ".github/**"
11+
12+
jobs:
13+
lint:
14+
name: Lint YAML files
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: ibiqlik/action-yamllint@v3
19+
with:
20+
file_or_dir: .github
21+
config_data: |
22+
extends: default
23+
rules:
24+
line-length:
25+
max: 120
26+
level: warning
27+
document-start: disable
28+
truthy: disable

0 commit comments

Comments
 (0)