-
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 642 Bytes
/
Copy pathlabeler.yml
File metadata and controls
33 lines (28 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Labeler
on:
push:
branches:
- main
permissions:
actions: read
contents: read
security-events: write
pull-requests: write
jobs:
dump-context:
runs-on: ubuntu-latest
steps:
- name: Dump context "GitHub"
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
labeler:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v6
- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v6.0.0
with:
skip-delete: true
github-token: ${{ secrets.GITHUB_TOKEN }}