77c9114cb0
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/dracut#99c74373eee952f26c7d256f12c024fe29397ae6
35 lines
996 B
Diff
35 lines
996 B
Diff
From 4cd8f2c90ef8afb3757ec82d55148b15280e0911 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?J=C3=B3hann=20B=2E=20Gu=C3=B0mundsson?= <johannbg@gmail.com>
|
|
Date: Thu, 6 Aug 2020 19:11:58 +0000
|
|
Subject: [PATCH] Adding the labels file for the RHEL-8 branch
|
|
|
|
---
|
|
.github/workflows/rhel8-labeler.yml | 18 ++++++++++++++++++
|
|
1 file changed, 18 insertions(+)
|
|
|
|
diff --git a/.github/workflows/rhel8-labeler.yml b/.github/workflows/rhel8-labeler.yml
|
|
new file mode 100644
|
|
index 00000000..5b83f914
|
|
--- /dev/null
|
|
+++ b/.github/workflows/rhel8-labeler.yml
|
|
@@ -0,0 +1,18 @@
|
|
+# This workflow will triage pull requests for the RHEL-9 branch and
|
|
+# apply a label based on the paths that are modified in the pull request.
|
|
+
|
|
+name: rhel8-labeler
|
|
+on:
|
|
+ pull_request:
|
|
+ branches:
|
|
+ - RHEL-8
|
|
+
|
|
+jobs:
|
|
+ label:
|
|
+ runs-on: ubuntu-latest
|
|
+
|
|
+ steps:
|
|
+ - uses: actions/labeler@v2
|
|
+ with:
|
|
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
+ configuration-path: .github/rhel8-label-triggers.yml
|
|
|