mirror of
https://gitea.com/docker/metadata-action.git
synced 2024-11-22 12:09:32 +01:00
Add label sponsor
This commit is contained in:
parent
5f29dbc7d7
commit
e08ef4ca63
2 changed files with 32 additions and 3 deletions
14
.github/labels.yml
vendored
14
.github/labels.yml
vendored
|
@ -51,9 +51,9 @@
|
||||||
name: ":no_entry_sign: invalid"
|
name: ":no_entry_sign: invalid"
|
||||||
color: "e6e6e6"
|
color: "e6e6e6"
|
||||||
description: ""
|
description: ""
|
||||||
- # maybe bug
|
- # investigate
|
||||||
name: ":interrobang: maybe bug"
|
name: ":mag: investigate"
|
||||||
color: "ff5722"
|
color: "e6625b"
|
||||||
description: ""
|
description: ""
|
||||||
- # needs more info
|
- # needs more info
|
||||||
name: ":thinking: needs more info"
|
name: ":thinking: needs more info"
|
||||||
|
@ -67,6 +67,14 @@
|
||||||
name: ":question: question"
|
name: ":question: question"
|
||||||
color: "3f51b5"
|
color: "3f51b5"
|
||||||
description: ""
|
description: ""
|
||||||
|
- # sponsor
|
||||||
|
name: ":sparkling_heart: sponsor"
|
||||||
|
color: "fedbf0"
|
||||||
|
description: ""
|
||||||
|
- # stale
|
||||||
|
name: ":skull: stale"
|
||||||
|
color: "237da0"
|
||||||
|
description: ""
|
||||||
- # upstream
|
- # upstream
|
||||||
name: ":eyes: upstream"
|
name: ":eyes: upstream"
|
||||||
color: "fbca04"
|
color: "fbca04"
|
||||||
|
|
21
.github/workflows/label-sponsor.yml
vendored
Normal file
21
.github/workflows/label-sponsor.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
name: label-sponsor
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- 'opened'
|
||||||
|
issues:
|
||||||
|
types:
|
||||||
|
- 'opened'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Set sponsor label
|
||||||
|
uses: JasonEtco/is-sponsor-label-action@v1
|
||||||
|
with:
|
||||||
|
label: ":sparkling_heart: sponsor"
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in a new issue