Skip to content

Commit a06ce30

Browse files
committed
Removes GitHub Actions labeler workflow
Deletes the workflow file used for automatically labeling pull requests. Likely no longer needed or replaced by an alternative solution.
1 parent 534289b commit a06ce30

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/label.yml renamed to .github/workflows/labeler.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,20 @@
66
# https://github.com/actions/labeler
77

88
name: Labeler
9-
on: [pull_request_target]
9+
on:
10+
pull_request_target:
11+
branches:
12+
- master
1013

1114
jobs:
1215
label:
1316

1417
runs-on: ubuntu-latest
1518
permissions:
16-
contents: read
17-
pull-requests: write
19+
contents: read # Grants read access to the repository contents
20+
pull-requests: write # Allows writing labels to pull requests
1821

1922
steps:
2023
- uses: actions/labeler@v4
2124
with:
22-
repo-token: "${{ secrets.GITHUB_TOKEN }}"
25+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)