Checksum dont seem to generate on latest version for Ubi tool #1
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: issue-closer | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
label-issue: | |
runs-on: ubuntu-latest | |
if: github.actor != 'jdx' | |
steps: | |
- run: gh issue close "${{ github.event.issue.number }}" --reason "not planned" -c "issues may only be created by maintainers" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |