diff options
author | Thomas F. K. Jorna <[email protected]> | 2022-07-28 18:47:50 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-07-28 18:47:50 +0200 |
commit | a5b81198852cf82ef34d6e34f319d074c72fcf00 (patch) | |
tree | ceb661b5f67aa30fc183f6a5061ab23734a8bfd0 /.github/workflows/label-sponsors.yml | |
parent | 2cd93bfa517d51b4c97d42817713ca5ce61cb0df (diff) |
ci: label issues from sponsors
Diffstat (limited to '.github/workflows/label-sponsors.yml')
-rw-r--r-- | .github/workflows/label-sponsors.yml | 14 |
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 0000000..10abb72 --- /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 + env: + GITHUB_TOKEN: ${{ secrets.PAT }} |