|
Harald Hoyer |
460d2c |
From 4cd8f2c90ef8afb3757ec82d55148b15280e0911 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:11:58 +0000
|
|
Harald Hoyer |
460d2c |
Subject: [PATCH] Adding the labels file for the RHEL-8 branch
|
|
Harald Hoyer |
460d2c |
|
|
Harald Hoyer |
460d2c |
---
|
|
Harald Hoyer |
460d2c |
.github/workflows/rhel8-labeler.yml | 18 ++++++++++++++++++
|
|
Harald Hoyer |
460d2c |
1 file changed, 18 insertions(+)
|
|
Harald Hoyer |
460d2c |
|
|
Harald Hoyer |
460d2c |
diff --git a/.github/workflows/rhel8-labeler.yml b/.github/workflows/rhel8-labeler.yml
|
|
Harald Hoyer |
460d2c |
new file mode 100644
|
|
Harald Hoyer |
460d2c |
index 00000000..5b83f914
|
|
Harald Hoyer |
460d2c |
--- /dev/null
|
|
Harald Hoyer |
460d2c |
+++ b/.github/workflows/rhel8-labeler.yml
|
|
Harald Hoyer |
460d2c |
@@ -0,0 +1,18 @@
|
|
Harald Hoyer |
460d2c |
+# This workflow will triage pull requests for the RHEL-9 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: rhel8-labeler
|
|
Harald Hoyer |
460d2c |
+on:
|
|
Harald Hoyer |
460d2c |
+ pull_request:
|
|
Harald Hoyer |
460d2c |
+ branches:
|
|
Harald Hoyer |
460d2c |
+ - RHEL-8
|
|
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/rhel8-label-triggers.yml
|
|
Harald Hoyer |
460d2c |
|