Skip to content

Commit 98e26f8

Browse files
authored
Add auto PR labeler + remove dependabot docker config (#2)
Signed-off-by: Emruz Hossain <[email protected]>
1 parent eea27ad commit 98e26f8

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

.github/dependabot.yml

-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ updates:
55
schedule:
66
interval: "weekly"
77

8-
- package-ecosystem: "docker"
9-
directory: "/"
10-
schedule:
11-
interval: "weekly"
12-
138
- package-ecosystem: "github-actions"
149
directory: "/"
1510
schedule:

.github/workflows/auto-labeler.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Auto-label PR
2+
3+
on:
4+
pull_request:
5+
types: [opened, edited, labeled, unlabeled, synchronize]
6+
jobs:
7+
pr-labeler:
8+
permissions:
9+
contents: read # for TimonVS/pr-labeler-action to read config file
10+
pull-requests: write # for TimonVS/pr-labeler-action to add labels in PR
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: TimonVS/pr-labeler-action@v5
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)