workflow: add automatic labeling (#443)

pull/444/head
Jeff Malnick 5 years ago committed by GitHub
parent 334cc9c5c0
commit 0d75d591d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save