Dark Mode is not working properly #154
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: Auto Close Empty Issues | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
check-issue-body-not-empty: | |
runs-on: ubuntu-latest | |
steps: | |
- if: github.event.issue.body == 0 | |
name: Close Isssue | |
uses: peter-evans/close-issue@v1 | |
with: | |
comment: | | |
Issue body must contain content. | |
Auto closing this issue. | |