mirror of
https://github.com/docker/metadata-action.git
synced 2024-11-05 19:55:40 +01:00
22 lines
376 B
YAML
22 lines
376 B
YAML
|
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 }}
|