Add Google App Script (*.gs) file icon #20
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: Icon Review | |
on: | |
pull_request: | |
paths: | |
- 'icons/*.svg' | |
jobs: | |
icon-review: | |
name: Icon Review | |
runs-on: ubuntu-latest | |
env: | |
TARGET_BRANCH: ${{ github.event.pull_request.base.ref }} | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Review SVG files 🔍 | |
run: | | |
svgFiles=$(git diff origin/${{ env.TARGET_BRANCH }} --diff-filter=ACMRTUX --name-only | grep '.svg$') | |
echo "SVG files changed: ${svgFiles}" | |
npx svg-icon-review ${svgFiles} | |
- name: Upload PNG to Repository ⬆️ | |
run: | | |
mkdir -p review-images | |
mv ./preview.png review-images/${{ github.event.pull_request.number }}.png | |
git config user.name "GitHub Actions" | |
git config user.email "[email protected]" | |
git checkout -b review-images | |
git config pull.rebase true | |
git pull origin review-images | |
git add review-images/ | |
git commit -m "Add generated review image" | |
git push origin review-images | |
- name: Post previews in PR | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const fs = require('fs'); | |
const pngFilePath = './preview.png'; | |
const commentBody = '![Generated PNG](https://raw.githubusercontent.com/' + context.repo.owner + '/' + context.repo.repo + '/' + 'review-images/review-images/${{ github.event.pull_request.number }}.png)'; | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: commentBody | |
}) | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |