|
Harald Hoyer |
460d2c |
From 80f1ce6c1388f498a7fb25c0277039cf66665413 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:07:17 +0000
|
|
Harald Hoyer |
460d2c |
Subject: [PATCH] Adding the labels file for master
|
|
Harald Hoyer |
460d2c |
|
|
Harald Hoyer |
460d2c |
---
|
|
Harald Hoyer |
460d2c |
.github/workflows/master-labels.yml | 18 ++++++++++++++++++
|
|
Harald Hoyer |
460d2c |
1 file changed, 18 insertions(+)
|
|
Harald Hoyer |
460d2c |
|
|
Harald Hoyer |
460d2c |
diff --git a/.github/workflows/master-labels.yml b/.github/workflows/master-labels.yml
|
|
Harald Hoyer |
460d2c |
new file mode 100644
|
|
Harald Hoyer |
460d2c |
index 00000000..ad4aaa26
|
|
Harald Hoyer |
460d2c |
--- /dev/null
|
|
Harald Hoyer |
460d2c |
+++ b/.github/workflows/master-labels.yml
|
|
Harald Hoyer |
460d2c |
@@ -0,0 +1,18 @@
|
|
Harald Hoyer |
460d2c |
+# This workflow will triage pull requests for the RHEL-6 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: master-labeler
|
|
Harald Hoyer |
460d2c |
+on:
|
|
Harald Hoyer |
460d2c |
+ pull_request:
|
|
Harald Hoyer |
460d2c |
+ branches:
|
|
Harald Hoyer |
460d2c |
+ - master
|
|
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/master-label-triggers.yml
|
|
Harald Hoyer |
460d2c |
|