Skip to content

Commit 0f65f55

Browse files
authored
feat: add support for sticky comment notifications (#22)
1 parent 58050ff commit 0f65f55

File tree

13 files changed

+502
-329
lines changed

13 files changed

+502
-329
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/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
name: Build & Test
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v4
1313

14-
- uses: actions/setup-node@v4
15-
with:
16-
node-version: 20
17-
cache: 'npm'
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: 20
17+
cache: 'npm'
1818

19-
- name: Install dependencies
20-
run: npm install
19+
- name: Install dependencies
20+
run: npm install
2121

22-
- name: Run all checks
23-
run: npm run all
22+
- name: Run all checks
23+
run: npm run all

0 commit comments

Comments
 (0)