improve: issues design #148
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: Prettier Format Write | |
on: | |
workflow_dispatch: | |
issue_comment: | |
types: [created] | |
permissions: | |
contents: write | |
pull-requests: write | |
issues: read | |
jobs: | |
prettier_write: | |
if: github.event_name != 'issue_comment' || (github.event.issue.pull_request && startsWith(github.event.comment.body, 'run-prettier')) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Pull Request head ref | |
uses: xt0rted/pull-request-comment-branch@v2 | |
if: github.event_name == 'issue_comment' | |
id: comment-branch | |
- name: Checkout Pull Request head ref | |
uses: actions/checkout@v3 | |
if: github.event_name == 'issue_comment' | |
with: | |
ref: ${{ steps.comment-branch.outputs.head_ref }} | |
- name: Checkout default head ref | |
uses: actions/checkout@v3 | |
if: github.event_name != 'issue_comment' | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '14' | |
- name: Install dependencies | |
run: npm install | |
- name: Configure GitHub Actions bot | |
run : | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
- name: Run Prettier | |
id: prettier | |
run: npx prettier --config .prettierrc --write "**/*.{js,jsx,ts,tsx,html,css,scss}" | |
- name: Commit changes | |
run: | | |
git diff --exit-code || git commit -am "bot: apply Prettier formatting" | |
- name: Push changes | |
run: | | |
git push | |
- name: Comment reaction | |
if: github.event_name == 'issue_comment' | |
uses: dkershner6/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
reaction: "rocket" |