scoop-earne/.github/workflows/issues.yml

17 lines
506 B
YAML
Raw Normal View History

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:
2020-11-23 19:34:39 -05:00
GITH_EMAIL: earnestma@hotmail.com
2020-11-23 13:55:29 -05:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}