mirror of https://github.com/hashicorp/boundary
workflow: add automatic labeling (#443)
parent
334cc9c5c0
commit
0d75d591d1
@ -0,0 +1,26 @@
|
||||
test:
|
||||
- **/*_test.go
|
||||
|
||||
api:
|
||||
- api/*
|
||||
|
||||
core:
|
||||
- internal/*
|
||||
|
||||
website:
|
||||
- website/*
|
||||
|
||||
docs/concepts:
|
||||
- website/content/docs/concepts/*
|
||||
|
||||
docs/getting-started:
|
||||
- website/content/docs/getting-started/*
|
||||
|
||||
docs/installing:
|
||||
- website/content/docs/installing/*
|
||||
|
||||
docs/configuration:
|
||||
- website/content/docs/configuration/*
|
||||
|
||||
docs/releases:
|
||||
- website/content/docs/releases/*
|
||||
@ -0,0 +1,11 @@
|
||||
name: "Pull Request Labeler"
|
||||
on:
|
||||
- pull_request_target
|
||||
|
||||
jobs:
|
||||
triage:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/labeler@main
|
||||
with:
|
||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
Loading…
Reference in new issue