2020-11-23 13:55:29 -05:00
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [ opened, labeled ]
|
|
|
|
name: Issues
|
|
|
|
jobs:
|
|
|
|
issueHandler:
|
2020-11-23 19:34:39 -05:00
|
|
|
name: Issue Handler
|
|
|
|
runs-on: windows-latest
|
2020-11-23 13:55:29 -05:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@main
|
2020-11-23 19:34:39 -05:00
|
|
|
- name: Issue Handler
|
|
|
|
uses: Ash258/Scoop-GithubActions@stable-win
|
2020-11-23 13:55:29 -05:00
|
|
|
if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify'))
|
|
|
|
env:
|
2021-01-09 17:24:08 -05:00
|
|
|
GITH_EMAIL: me@earne.link
|
2020-11-23 13:55:29 -05:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|