Skip to content

Commit 7340c88

Browse files
committed
Add more github action
1 parent 979b07e commit 7340c88

7 files changed

Lines changed: 74 additions & 5 deletions

File tree

.github/dependabot.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,17 @@ updates:
33
- package-ecosystem: github-actions
44
directory: /
55
schedule:
6-
interval: monthly
7-
6+
interval: weekly
7+
- package-ecosystem: docker
8+
directory: '/'
9+
schedule:
10+
interval: weekly
11+
open-pull-requests-limit: 10
812
- package-ecosystem: npm
913
directory: /
10-
open-pull-requests-limit: 10
1114
schedule:
12-
interval: monthly
15+
interval: weekly
16+
open-pull-requests-limit: 10
17+
labels:
18+
- 'type: dependencies'
1319

.github/workflows/labels.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Sync labels
3+
4+
# yamllint disable-line rule:truthy
5+
on:
6+
schedule:
7+
- cron: "34 5 * * *"
8+
workflow_dispatch:
9+
10+
jobs:
11+
workflows:
12+
uses: hassio-addons/workflows/.github/workflows/labels.yaml@main

.github/workflows/lock.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Lock
3+
4+
# yamllint disable-line rule:truthy
5+
on:
6+
schedule:
7+
- cron: "0 9 * * *"
8+
workflow_dispatch:
9+
10+
jobs:
11+
workflows:
12+
uses: hassio-addons/workflows/.github/workflows/lock.yaml@main

.github/workflows/pr-labels.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: PR Labels
3+
4+
# yamllint disable-line rule:truthy
5+
on:
6+
pull_request_target:
7+
types:
8+
- opened
9+
- labeled
10+
- unlabeled
11+
- synchronize
12+
13+
jobs:
14+
workflows:
15+
uses: hassio-addons/workflows/.github/workflows/pr-labels.yaml@main
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Release Drafter
3+
4+
# yamllint disable-line rule:truthy
5+
on:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
workflows:
12+
uses: hassio-addons/workflows/.github/workflows/release-drafter.yaml@main

.github/workflows/stale.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Stale
3+
4+
# yamllint disable-line rule:truthy
5+
on:
6+
schedule:
7+
- cron: "0 8 * * *"
8+
workflow_dispatch:
9+
10+
jobs:
11+
workflows:
12+
uses: hassio-addons/workflows/.github/workflows/stale.yaml@main

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [18.x]
15+
node-version: [20.x]
1616

1717
steps:
1818
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)