aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2024-09-08 01:01:59 +0200
committerGitHub <noreply@github.com>2024-09-08 01:01:59 +0200
commit05837fa96d914350234afab1dafaeac3e332e374 (patch)
tree201027f1f099695d35e24bea152812fe5a5a9175
parent62b92155adc962fce83206c5de9aa210023e14da (diff)
downloadNorthstarMods-05837fa96d914350234afab1dafaeac3e332e374.tar.gz
NorthstarMods-05837fa96d914350234afab1dafaeac3e332e374.zip
Add GitHub Action to automatically label PRs (#871)v1.28.0-rc4
Adds "needs code review" and "needs testing" to all new PRs Co-authored-by: ASpoonPlaysGames <66967891+ASpoonPlaysGames@users.noreply.github.com>
-rw-r--r--.github/labeler.yml9
-rw-r--r--.github/workflows/auto-label-pr.yml14
2 files changed, 23 insertions, 0 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml
new file mode 100644
index 000000000..cc83d7cd3
--- /dev/null
+++ b/.github/labeler.yml
@@ -0,0 +1,9 @@
+# Add 'needs code review' label to any changes within the entire repository
+needs code review:
+- changed-files:
+ - any-glob-to-any-file: '**'
+
+# Add 'needs testing' label to any changes within the entire repository
+needs testing:
+- changed-files:
+ - any-glob-to-any-file: '**'
diff --git a/.github/workflows/auto-label-pr.yml b/.github/workflows/auto-label-pr.yml
new file mode 100644
index 000000000..659ff351d
--- /dev/null
+++ b/.github/workflows/auto-label-pr.yml
@@ -0,0 +1,14 @@
+name: Auto-Labeler
+on:
+ pull_request_target:
+ types:
+ - opened
+
+jobs:
+ labeler:
+ permissions:
+ contents: read
+ pull-requests: write
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/labeler@v5