We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a177aab commit 1211c06Copy full SHA for 1211c06
.github/labels.yml
@@ -67,6 +67,10 @@
67
name: ":question: question"
68
color: "3f51b5"
69
description: ""
70
+- # sponsor
71
+ name: ":sparkling_heart: sponsor"
72
+ color: "fedbf0"
73
+ description: ""
74
- # stale
75
name: ":skull: stale"
76
color: "237da0"
.github/workflows/label-sponsor.yml
@@ -0,0 +1,21 @@
1
+name: label-sponsor
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - 'opened'
7
+ issues:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ -
16
+ name: Set sponsor label
17
+ uses: JasonEtco/is-sponsor-label-action@v1
18
+ with:
19
+ label: ":sparkling_heart: sponsor"
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments