[ISSUE] Improve navbar of the webpage #13
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: Validate Issue Template | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
- edited | ||
jobs: | ||
validate-template: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check Issue Template | ||
if: github.event.issue.body == null || !github.event.issue.body.contains('Your Name') | ||
Check failure on line 15 in .github/workflows/validate-issue.yml GitHub Actions / Validate Issue TemplateInvalid workflow file
|
||
run: | | ||
echo "::error::The issue does not follow the required template. Please fill out all fields." | ||
exit 1 |