Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Korobeynikov <anton@korobeynikov.info>2021-12-12 12:46:21 +0300
committerAnton Korobeynikov <anton@korobeynikov.info>2021-12-12 12:46:21 +0300
commit5ccfb73756e915d0afed5c979e075bc18890fd4c (patch)
tree113ad57b679479f587a463b64a5c4d0116a2e876 /.github
parent805488358a8c285afc4683272171a4144d57877e (diff)
Autolabel new issues
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/new-issues.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/new-issues.yml b/.github/workflows/new-issues.yml
new file mode 100644
index 000000000000..67c706f3bf82
--- /dev/null
+++ b/.github/workflows/new-issues.yml
@@ -0,0 +1,13 @@
+name: Labeling new issues
+on:
+ issues:
+ types: ['opened']
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: Renato66/auto-label@v2
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ ignore-comments: true
+ default-labels: '["help wanted"]'