summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2022-09-10 11:25:32 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2022-09-10 11:25:32 +0900
commit845034c81c38c42e2fe1b0be925b150506e6089d (patch)
tree7eb60bae4c942e5ddc7edfeb5d7d10f862d17296 /.github
parent54d42e3f403cc419b8f11c625354d9d38381ebc8 (diff)
Add Sponsor Labels action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/label-sponsors.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/label-sponsors.yml b/.github/workflows/label-sponsors.yml
new file mode 100644
index 00000000..b5c74796
--- /dev/null
+++ b/.github/workflows/label-sponsors.yml
@@ -0,0 +1,14 @@
+name: Label sponsors
+on:
+ pull_request:
+ types: [opened]
+ issues:
+ types: [opened]
+jobs:
+ build:
+ name: is-sponsor-label
+ runs-on: ubuntu-latest
+ steps:
+ - uses: JasonEtco/is-sponsor-label-action@v1.2.0
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}