Skip to content

Commit fc5bdac

Browse files
authoredFeb 23, 2024
Automatic addition of the test native label to some PRs (#10653)
1 parent 8c08031 commit fc5bdac

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
 

‎.github/labeler.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
test native:
2+
- changed-files:
3+
- any-glob-to-any-file:
4+
- instrumentation/logback/logback-appender-10/library/**
5+
- instrumentation/jdbc/library/**
6+
- instrumentation/spring/**
7+
- smoke-tests-otel-starter/**
8+
- all-globs-to-all-files: '!instrumentation/spring/**/javaagent/**

‎.github/workflows/label.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Labeler
2+
on: [pull_request_target]
3+
4+
jobs:
5+
label:
6+
7+
runs-on: ubuntu-latest
8+
permissions:
9+
contents: read
10+
pull-requests: write
11+
12+
steps:
13+
- uses: actions/labeler@v4
14+
with:
15+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)