Labeler
This commit is contained in:
parent
ea78449027
commit
fa590a679d
|
@ -0,0 +1,27 @@
|
||||||
|
elixir:
|
||||||
|
- instrumentation/**/*.ex
|
||||||
|
- instrumentation/**/*.exs
|
||||||
|
- propagators/**/*.ex
|
||||||
|
- propagators/**/*.exs
|
||||||
|
- exporters/**/*.ex
|
||||||
|
- exporters/**/*.exs
|
||||||
|
|
||||||
|
erlang:
|
||||||
|
- instrumentation/**/*.erl
|
||||||
|
- instrumentation/**/*.hrl
|
||||||
|
- instrumentation/**/rebar.config
|
||||||
|
- propagators/**/*.erl
|
||||||
|
- propagators/**/*.hrl
|
||||||
|
- propagators/**/rebar.config
|
||||||
|
- exporters/**/*.erl
|
||||||
|
- exporters/**/*.hrl
|
||||||
|
- exporters/**/rebar.config
|
||||||
|
|
||||||
|
instrumentation:
|
||||||
|
- instrumentation/**/*
|
||||||
|
|
||||||
|
propagators:
|
||||||
|
- propagators/**/*
|
||||||
|
|
||||||
|
scope-ci:
|
||||||
|
- .github/workflows/**
|
|
@ -0,0 +1,10 @@
|
||||||
|
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