-
Notifications
You must be signed in to change notification settings - Fork 701
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add /spotless command for auto-formatting
- Loading branch information
Showing
2 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: Prettier format automation | ||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
comment-driven-automation: | ||
if: | | ||
github.event.issue.pull_request && | ||
( | ||
startsWith(github.event.comment.body, '/spotless') || | ||
startsWith(github.event.comment.body, '/help') | ||
) | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
steps: | ||
- name: Check for command | ||
id: command | ||
uses: xt0rted/slash-command-action@v2 | ||
continue-on-error: true | ||
with: | ||
command: spotless | ||
reaction-type: "eyes" | ||
|
||
- name: Get command | ||
env: | ||
BODY: ${{ github.event.comment.body }} | ||
run: | | ||
# intentionally only looking at the first line of the body | ||
command=$(echo "$BODY" | head -1 | sed "s;^/;;") | ||
echo "COMMAND=$command" >> $GITHUB_ENV | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Check out PR branch | ||
env: | ||
NUMBER: ${{ github.event.issue.number }} | ||
GH_TOKEN: ${{ github.token }} | ||
run: | | ||
gh pr checkout $NUMBER | ||
if: env.COMMAND == 'spotless' | ||
|
||
- name: Set git user | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email github-action[bot]@users.noreply.github.com | ||
if: env.COMMAND == 'spotless' | ||
|
||
- name: Run command | ||
env: | ||
NUMBER: ${{ github.event.issue.number }} | ||
GH_TOKEN: ${{ github.token }} | ||
run: | | ||
available_commands="Available commands: | ||
* \`/spotless\` - runs \`yarn format\` | ||
* \`/help\` - displays available commands | ||
" | ||
if [[ "$COMMAND" == "spotless" ]]; then | ||
yarn format | ||
if git diff --quiet; then | ||
gh pr comment $NUMBER --body "Already up-to-date" | ||
exit 0 # success | ||
fi | ||
git commit -a -m "yarn format" | ||
git push | ||
elif [[ "$COMMAND" == "help" ]]; then | ||
gh pr comment $NUMBER --body "$available_commands" | ||
else | ||
body="Unknown command: \`$COMMAND\` | ||
$available_commands | ||
" | ||
gh pr comment $NUMBER --body "$body" | ||
fi | ||
working-directory: webapp |
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