Skip to content

Commit ec24736

Browse files
authored
add workflow labeler action for i18n (#1403)
Signed-off-by: Lorenzo Lewis <[email protected]>
1 parent 1f5c967 commit ec24736

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/labeler.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# See https://github.com/actions/labeler
2+
3+
i18n:
4+
- docs/src/content/docs/fr/**/*

.github/workflows/labeler.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: 'Pull Request Labeler'
2+
on:
3+
- pull_request_target
4+
5+
jobs:
6+
triage:
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/labeler@v4
13+
with:
14+
repo-token: '${{ secrets.GITHUB_TOKEN }}'

0 commit comments

Comments
 (0)