File tree 2 files changed +45
-0
lines changed 2 files changed +45
-0
lines changed Original file line number Diff line number Diff line change
1
+ kind/docs :
2
+ - **/*.md
3
+ - docs/**/*
4
+
5
+ kind/ui :
6
+ - web_src/**/*
7
+ - all : ["templates/**/*", "!templates/swagger/v1_json.tmpl"]
8
+
9
+ kind/api :
10
+ - templates/swagger/v1_json.tmpl
11
+
12
+ kind/build :
13
+ - Makefile
14
+ - Dockerfile
15
+ - Dockerfile.rootless
16
+ - docker/**
17
+ - webpack.config.js
18
+
19
+ kind/lint :
20
+ - .eslintrc.yaml
21
+ - .golangci.yml
22
+ - .markdownlint.yaml
23
+ - .spectral.yaml
24
+ - .stylelintrc.yaml
Original file line number Diff line number Diff line change
1
+ name : labeler
2
+
3
+ on :
4
+ pull_request_target :
5
+ types : [opened, synchronize, reopened]
6
+
7
+ concurrency :
8
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
9
+ cancel-in-progress : true
10
+
11
+ jobs :
12
+ label :
13
+ runs-on : ubuntu-latest
14
+ permissions :
15
+ contents : read
16
+ pull-requests : write
17
+ steps :
18
+ - uses : actions/labeler@v4
19
+ with :
20
+ dot : true
21
+ sync-labels : true
You can’t perform that action at this time.
0 commit comments