|
Harald Hoyer |
460d2c |
From 3b20f5c72e4217f44cbba8dbaf455c6f85d9f1d7 Mon Sep 17 00:00:00 2001
|
|
Harald Hoyer |
460d2c |
From: =?UTF-8?q?J=C3=B3hann=20B=2E=20Gu=C3=B0mundsson?= <johannbg@gmail.com>
|
|
Harald Hoyer |
460d2c |
Date: Thu, 6 Aug 2020 19:10:51 +0000
|
|
Harald Hoyer |
460d2c |
Subject: [PATCH] Adding the labels file for the RHEL-7 branch
|
|
Harald Hoyer |
460d2c |
|
|
Harald Hoyer |
460d2c |
---
|
|
Harald Hoyer |
460d2c |
.github/workflows/rhel7-labeler.yml | 18 ++++++++++++++++++
|
|
Harald Hoyer |
460d2c |
1 file changed, 18 insertions(+)
|
|
Harald Hoyer |
460d2c |
|
|
Harald Hoyer |
460d2c |
diff --git a/.github/workflows/rhel7-labeler.yml b/.github/workflows/rhel7-labeler.yml
|
|
Harald Hoyer |
460d2c |
new file mode 100644
|
|
Harald Hoyer |
460d2c |
index 00000000..63f9e1b6
|
|
Harald Hoyer |
460d2c |
--- /dev/null
|
|
Harald Hoyer |
460d2c |
+++ b/.github/workflows/rhel7-labeler.yml
|
|
Harald Hoyer |
460d2c |
@@ -0,0 +1,18 @@
|
|
Harald Hoyer |
460d2c |
+# This workflow will triage pull requests for the RHEL-7 branch and
|
|
Harald Hoyer |
460d2c |
+# apply a label based on the paths that are modified in the pull request.
|
|
Harald Hoyer |
460d2c |
+
|
|
Harald Hoyer |
460d2c |
+name: rhel7-labeler
|
|
Harald Hoyer |
460d2c |
+on:
|
|
Harald Hoyer |
460d2c |
+ pull_request:
|
|
Harald Hoyer |
460d2c |
+ branches:
|
|
Harald Hoyer |
460d2c |
+ - RHEL-7
|
|
Harald Hoyer |
460d2c |
+
|
|
Harald Hoyer |
460d2c |
+jobs:
|
|
Harald Hoyer |
460d2c |
+ label:
|
|
Harald Hoyer |
460d2c |
+ runs-on: ubuntu-latest
|
|
Harald Hoyer |
460d2c |
+
|
|
Harald Hoyer |
460d2c |
+ steps:
|
|
Harald Hoyer |
460d2c |
+ - uses: actions/labeler@v2
|
|
Harald Hoyer |
460d2c |
+ with:
|
|
Harald Hoyer |
460d2c |
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
Harald Hoyer |
460d2c |
+ configuration-path: .github/rhel7-label-triggers.yml
|
|
Harald Hoyer |
460d2c |
|