diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2024-08-29 23:34:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-30 00:34:39 +0200 |
commit | 46478a36afd0ce85eecf80caafb8092fa4cff62e (patch) | |
tree | d50589d0b18dccd8e434b4f87ad790f68b831911 /.github/workflows | |
parent | efecb84a9fac99dabe16c332b61bd3c6c70ddec7 (diff) | |
download | NorthstarLauncher-46478a36afd0ce85eecf80caafb8092fa4cff62e.tar.gz NorthstarLauncher-46478a36afd0ce85eecf80caafb8092fa4cff62e.zip |
Add GitHub Action to automatically label PRs (#794)
Adds "needs code review" and "needs testing" to all new PRs
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/auto-label-pr.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/auto-label-pr.yml b/.github/workflows/auto-label-pr.yml new file mode 100644 index 00000000..659ff351 --- /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 |