Fix missing template apply button in Redmine 6.0 #6
Workflow file for this run
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: Check assets/javascripts/issue_templates.js is up-to-date | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
check-asset-js: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.16.0 | |
- name: Install dependencies | |
run: npm ci | |
- name: Rebuild the assets/javascripts/issue_templates.js | |
run: npm run build | |
- name: Compare the expected and actual assets/javascripts/issue_templates.js | |
run: | | |
if [ "$(git diff --ignore-space-at-eol assets/javascripts/ | wc -l)" -gt "0" ]; then | |
message="assets/javascripts/issue_templates.js is out of date. Please build and push again according to the \"Build scripts\" section in README.md." | |
echo $message | |
# Also add the message to the GitHub step summary | |
echo "## :x: assets/javascripts/issue_templates.js is out of date" >> $GITHUB_STEP_SUMMARY | |
echo $message >> $GITHUB_STEP_SUMMARY | |
exit 1 | |
fi |