I would like to validate all manifests in the store, but c2patool (with '-d' flag) only validates some of them #173
This file contains hidden or 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: Labeling ticket "To Do" | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
label_issues: | |
runs-on: ubuntu-latest | |
if: | | |
!contains(github.event.issue.labels.*.name, 'status: done') | |
permissions: | |
issues: write | |
steps: | |
- run: 'gh issue reopen "$NUMBER"' | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
NUMBER: ${{ github.event.issue.number }} |