-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Add actions/labeler
#26962
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add actions/labeler
#26962
Changes from 13 commits
7887dba
e9d60cd
0ed9d3c
e6a96d4
7dc910a
f7dfb2d
be98baf
9ac9d20
235be20
5708889
c068899
0dda37d
7cd05c2
72654a7
a8d851e
2045ec2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
kind/docs: | ||
- docs/**/* | ||
|
||
kind/ui: | ||
- web_src/**/* | ||
silverwind marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- all: ["templates/**/*", "!templates/swagger/v1_json.tmpl"] | ||
|
||
kind/api: | ||
- templates/swagger/v1_json.tmpl | ||
|
||
kind/build: | ||
- Makefile | ||
- Dockerfile | ||
- Dockerfile.rootless | ||
- webpack.config.js | ||
silverwind marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
dependencies: | ||
- go.mod | ||
- go.sum | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If a PR imports a new module, this PR gets labeled as There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, at least that's my understanding of the label. It says "Pull requests that update a dependency file". We can of course remove the setting of this label entirely if it's not useful, but I do see the addition/modification of depdendencies a important property on a PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have removed the
|
||
- package.json | ||
- package-lock.json | ||
- pyproject.toml | ||
- poetry.lock | ||
|
||
kind/lint: | ||
- .eslintrc.yaml | ||
- .golangci.yml | ||
- .markdownlint.yaml | ||
- .spectral.yaml | ||
- .stylelintrc.yaml |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: labeler | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, synchronize, reopened] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
label: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
steps: | ||
- uses: actions/labeler@v4 | ||
with: | ||
dot: true | ||
sync-labels: true |
Uh oh!
There was an error while loading. Please reload this page.