[email protected]: hash check failed #170
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issues | |
on: | |
issues: | |
types: [opened, labeled] | |
jobs: | |
issueVerifier: | |
name: Issue Verifier | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Verify Issues | |
uses: Ash258/Scoop-GithubActions@stable-win | |
if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify')) | |
env: | |
SHOVEL: "1" | |
GITH_EMAIL: [email protected] | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |