Skip to content

Commit b5307bb

Browse files
committed
Fix labeler action
1 parent df332f6 commit b5307bb

File tree

2 files changed

+38
-11
lines changed

2 files changed

+38
-11
lines changed

.github/labeler.yaml

Lines changed: 33 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,55 @@
11
# Modules
22
":floppy_disk: ecr-registry":
3-
- modules/ecr-registry/**/*
3+
- changed-files:
4+
- any-glob-to-any-file:
5+
- modules/ecr-registry/**/*
46

57
":floppy_disk: ecr-repository":
6-
- modules/ecr-repository/**/*
8+
- changed-files:
9+
- any-glob-to-any-file:
10+
- modules/ecr-repository/**/*
711

812
":floppy_disk: eks-access-entry":
9-
- modules/eks-access-entry/**/*
13+
- changed-files:
14+
- any-glob-to-any-file:
15+
- modules/eks-access-entry/**/*
1016

1117
":floppy_disk: eks-addon":
12-
- modules/eks-addon/**/*
18+
- changed-files:
19+
- any-glob-to-any-file:
20+
- modules/eks-addon/**/*
1321

1422
":floppy_disk: eks-aws-auth":
15-
- modules/eks-aws-auth/**/*
23+
- changed-files:
24+
- any-glob-to-any-file:
25+
- modules/eks-aws-auth/**/*
1626

1727
":floppy_disk: eks-cluster":
18-
- modules/eks-cluster/**/*
28+
- changed-files:
29+
- any-glob-to-any-file:
30+
- modules/eks-cluster/**/*
1931

2032
":floppy_disk: eks-fargate-profile":
21-
- modules/eks-fargate-profile/**/*
33+
- changed-files:
34+
- any-glob-to-any-file:
35+
- modules/eks-fargate-profile/**/*
2236

2337
":floppy_disk: eks-iam-access":
24-
- modules/eks-iam-access/**/*
38+
- changed-files:
39+
- any-glob-to-any-file:
40+
- modules/eks-iam-access/**/*
2541

2642
":floppy_disk: eks-max-pods":
27-
- modules/eks-max-pods/**/*
43+
- changed-files:
44+
- any-glob-to-any-file:
45+
- modules/eks-max-pods/**/*
2846

2947
":floppy_disk: eks-node-group":
30-
- modules/eks-node-group/**/*
48+
- changed-files:
49+
- any-glob-to-any-file:
50+
- modules/eks-node-group/**/*
3151

3252
":floppy_disk: eks-official-image":
33-
- modules/eks-official-image/**/*
53+
- changed-files:
54+
- any-glob-to-any-file:
55+
- modules/eks-official-image/**/*

.github/workflows/pull-request-labeler.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@ jobs:
77
label-pr:
88
runs-on: ubuntu-latest
99

10+
permissions:
11+
contents: read
12+
pull-requests: write
13+
1014
steps:
1115
- name: Add Labels for PR
1216
uses: actions/labeler@v5
1317
with:
1418
repo-token: "${{ secrets.GITHUB_TOKEN }}"
1519
configuration-path: .github/labeler.yaml
20+
dot: true
1621
sync-labels: true
1722

1823
- name: Add PR Size Labels for PR

0 commit comments

Comments
 (0)