The Reload app without saving command will cause the content in the meta-bind-embed code block to not display properly #407
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: Close Invalid Issue | |
| on: | |
| issues: | |
| types: | |
| - labeled | |
| jobs: | |
| closeIssue: | |
| if: github.event.label.name == 'invalid' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Close Issue | |
| uses: peter-evans/close-issue@v2 | |
| with: | |
| comment: This issue is invalid. Please conform to the issue templates. | |
| close-reason: not_planned |