mirror of
https://github.com/creyD/prettier_action.git
synced 2026-04-13 20:00:30 +02:00
Compare commits
66 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cb975d8aad | |||
| acf2e1f70b | |||
| ad03b42b19 | |||
| a20371f2d2 | |||
|
|
2b4b2c18e7 | ||
|
|
8d84d9c9f2 | ||
|
|
c0b1f6f05a | ||
|
|
bb1392436f | ||
|
|
d8e72fc127 | ||
|
|
75b0a4fda5 | ||
|
|
bb1dafe218 | ||
|
|
33b1eff486 | ||
|
|
72b033eda5 | ||
|
|
656daa9f97 | ||
|
|
1015fa1aaf | ||
|
|
0faaf9bad1 | ||
|
|
a35b5cc1cb | ||
|
|
b7cf1dc4c2 | ||
|
|
f852cea42f | ||
|
|
7ea4328121 | ||
|
|
193559158f | ||
| 34cc6fde0a | |||
|
|
03caf85843 | ||
| bb361e2979 | |||
|
|
ce4e1eba94 | ||
| b0b067ff52 | |||
| 269c9b08c9 | |||
|
|
6f7d0221d4 | ||
| 394fa2de3b | |||
| de263be475 | |||
|
|
cafb23058e | ||
| cf1aa3d38d | |||
| 173a5890f7 | |||
| fc18abc0ba | |||
|
|
30127fcc3c | ||
| e0055a4878 | |||
|
|
3c5eb02712 | ||
| b3e1246472 | |||
| a3fd60656c | |||
| fde6ec771e | |||
| 96faaba8df | |||
| 25af1e5a4b | |||
| 6024a801da | |||
| bf27e9d676 | |||
| 39ff9b668e | |||
| bb4a636946 | |||
| 3c71a9826d | |||
| 63b1ca9669 | |||
| c343fb81ed | |||
|
|
6ad77586cd | ||
| 00252f6732 | |||
| 2950e4532b | |||
| 824711396f | |||
| 5cea39febe | |||
| ea3e74cc2d | |||
| 71bcaf6210 | |||
| 29a6b692fd | |||
| b09ae6a0d6 | |||
| 073a0f8b6e | |||
| 0ba5bcfc18 | |||
| 5daa695f24 | |||
| bbeb9af617 | |||
| 8d0861a178 | |||
|
|
c45684605c | ||
|
|
638e44576b | ||
| b5eb80d2a9 |
@@ -1,4 +1,4 @@
|
|||||||
FROM node:lts-alpine3.9
|
FROM node:lts-alpine3.9
|
||||||
RUN apk update && apk upgrade && apk add --no-cache bash git openssh
|
RUN apk update && apk add --no-cache bash git openssh
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
ENTRYPOINT ["/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
|
|||||||
76
README.md
76
README.md
@@ -16,66 +16,78 @@ A GitHub action for styling files with [prettier](https://prettier.io).
|
|||||||
|
|
||||||
| Parameter | Required | Default | Description |
|
| Parameter | Required | Default | Description |
|
||||||
| - | :-: | :-: | - |
|
| - | :-: | :-: | - |
|
||||||
| dry | :x: | False | Runs the action in dry mode. Files wont get changed and the action fails if there are unprettified files. |
|
| dry | :x: | `false` | Runs the action in dry mode. Files wont get changed and the action fails if there are unprettified files. |
|
||||||
| prettier_version | :x: | False | Specific prettier version (by default use latest) |
|
| prettier_version | :x: | `false` | Specific prettier version (by default use latest) |
|
||||||
| prettier_options | :x: | `--write **/*.js` | Prettier options (by default it applies to the whole repository) |
|
| prettier_options | :x: | `"--write **/*.js"` | Prettier options (by default it applies to the whole repository) |
|
||||||
| commit_options | :x: | - | Custom git commit options |
|
| commit_options | :x: | - | Custom git commit options |
|
||||||
| commit_message | :x: | Prettified Code! | Custom git commit message |
|
| same_commit | :x: | `false` | Update the current commit instead of creating a new one, created by [Joren Broekema](https://github.com/jorenbroekema), this command works only with the checkout action set to fetch depth '0' (see example 2) |
|
||||||
| file_pattern | :x: | * | Custom git add file pattern |
|
| commit_message | :x: | `"Prettified Code!"` | Custom git commit message, will be ignored if used with `same_commit` |
|
||||||
| branch | :white_check_mark: | - | There are two types of action triggers in GitHub: on pull request and on push. The branch needs to be defined for both, but in case of the pull request trigger it should have `${{ github.head_ref }}` and on push it should have the branch the trigger is designed for. |
|
| file_pattern | :x: | `*` | Custom git add file pattern, can't be used with only_changed! |
|
||||||
|
| prettier_plugins | :x: | ` ` | Install Prettier plugins, i.e. `@prettier/prettier-php @prettier/some-other-plugin` |
|
||||||
|
| only_changed | :x: | `false` | Only prettify changed files, can't be used with file_pattern! This command works only with the checkout action set to fetch depth '0' (see example 2)|
|
||||||
|
|
||||||
|
> Note: using the same_commit option may lead to problems if other actions are relying on the commit being the same before and after the prettier action has ran. Keep this in mind.
|
||||||
|
|
||||||
### Example Config
|
### Example Config
|
||||||
|
|
||||||
#### Example - On Pull Request
|
#### Example 1 (run on push in master)
|
||||||
|
|
||||||
This is a small example of what your `action.yml` could look like (on pull request mode):
|
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
name: Prettier for JS Code
|
name: Continuous Integration
|
||||||
|
|
||||||
on: [pull_request]
|
# This action works with pull requests and pushes
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cleanup_tasks:
|
prettier:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning the repository
|
- name: Checkout
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 1
|
# Make sure the actual branch is checked out when running on pull requests
|
||||||
- name: Prettify the JS Code
|
ref: ${{ github.head_ref }}
|
||||||
uses: creyD/prettier_action@v2.1
|
|
||||||
|
- name: Prettify code
|
||||||
|
uses: creyD/prettier_action@v3.1
|
||||||
with:
|
with:
|
||||||
prettier_options: '--no-semi --write *.js'
|
# This part is also where you can pass other options, for example:
|
||||||
branch: ${{ github.head_ref }}
|
prettier_options: --write **/*.{js,md}
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Example - On Push
|
#### Example 2 (using the only_changed or same_commit option on PR)
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
name: Prettier for JS Code
|
name: Continuous Integration
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
pull_request:
|
||||||
branches: [master]
|
branches: [master]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cleanup_tasks:
|
prettier:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning the repository
|
- name: Checkout
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 1
|
# Make sure the actual branch is checked out when running on pull requests
|
||||||
- name: Prettify the JS Code
|
ref: ${{ github.head_ref }}
|
||||||
uses: creyD/prettier_action@v2.1
|
# This is important to fetch the changes to the previous commit
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Prettify code
|
||||||
|
uses: creyD/prettier_action@v3.1
|
||||||
with:
|
with:
|
||||||
prettier_options: '--no-semi --write *.js'
|
# This part is also where you can pass other options, for example:
|
||||||
branch: master
|
prettier_options: --write **/*.{js,md}
|
||||||
|
only_changed: True
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
```
|
```
|
||||||
|
|||||||
22
action.yml
22
action.yml
@@ -5,30 +5,40 @@ author: Conrad Großer <grosserconrad@gmail.com>
|
|||||||
|
|
||||||
inputs:
|
inputs:
|
||||||
commit_message:
|
commit_message:
|
||||||
description: Commit message
|
description: Commit message, will be ignored if used with same_commit
|
||||||
required: false
|
required: false
|
||||||
default: 'Prettified Code!'
|
default: 'Prettified Code!'
|
||||||
|
same_commit:
|
||||||
|
description: Update the current commit instead of creating a new one
|
||||||
|
required: false
|
||||||
|
default: false
|
||||||
commit_options:
|
commit_options:
|
||||||
description: Commit options
|
description: Commit options
|
||||||
required: false
|
required: false
|
||||||
file_pattern:
|
file_pattern:
|
||||||
description: File pattern used for `git add`
|
description: File pattern used for `git add`, can't be used with only_changed!
|
||||||
required: false
|
required: false
|
||||||
default: '*'
|
default: '*'
|
||||||
prettier_options:
|
prettier_options:
|
||||||
description: Options for the `prettier` command
|
description: Options for the `prettier` command
|
||||||
required: false
|
required: false
|
||||||
default: '--write **/*.js'
|
default: '--write **/*.js'
|
||||||
branch:
|
|
||||||
description: Target branch for the changes
|
|
||||||
required: true
|
|
||||||
dry:
|
dry:
|
||||||
description: Running the script in dry mode just shows whether there are files that should be prettified or not
|
description: Running the script in dry mode just shows whether there are files that should be prettified or not
|
||||||
required: false
|
required: false
|
||||||
default: False
|
default: false
|
||||||
prettier_version:
|
prettier_version:
|
||||||
description: Specific version of prettier (by default just use the latest version)
|
description: Specific version of prettier (by default just use the latest version)
|
||||||
required: false
|
required: false
|
||||||
|
default: false
|
||||||
|
only_changed:
|
||||||
|
description: Only prettify files changed in the last commit, can't be used with file_pattern!
|
||||||
|
required: false
|
||||||
|
default: false
|
||||||
|
prettier_plugins:
|
||||||
|
description: Install Prettier plugins, i.e. `@prettier/prettier-php @prettier/some-other-plugin`
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'docker'
|
using: 'docker'
|
||||||
|
|||||||
@@ -25,22 +25,28 @@ _git_changed() {
|
|||||||
[[ -n "$(git status -s)" ]]
|
[[ -n "$(git status -s)" ]]
|
||||||
}
|
}
|
||||||
|
|
||||||
# Pushes to the according upstream (origin or input branch)
|
|
||||||
_git_push() {
|
|
||||||
if [ -z "$INPUT_BRANCH" ]
|
|
||||||
then
|
|
||||||
git push origin
|
|
||||||
else
|
|
||||||
git push --set-upstream origin "HEAD:$INPUT_BRANCH"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# PROGRAM
|
# PROGRAM
|
||||||
echo "Installing prettier..."
|
echo "Installing prettier..."
|
||||||
if "$INPUT_PRETTIER_VERSION"; then
|
case $INPUT_PRETTIER_VERSION in
|
||||||
npm install --silent --global prettier@$INPUT_PRETTIER_VERSION
|
false)
|
||||||
else
|
npm install --silent --global prettier
|
||||||
npm install --silent --global prettier
|
;;
|
||||||
|
*)
|
||||||
|
npm install --silent --global prettier@$INPUT_PRETTIER_VERSION
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Install plugins
|
||||||
|
if [ -n "$INPUT_PRETTIER_PLUGINS" ]; then
|
||||||
|
for plugin in $INPUT_PRETTIER_PLUGINS; do
|
||||||
|
echo "Checking plugin: $plugin"
|
||||||
|
# check regex against @prettier/xyz
|
||||||
|
if ! echo "$plugin" | grep -Eq '(@prettier\/)+(plugin-[a-z\-]+)'; then
|
||||||
|
echo "$plugin does not seem to be a valid @prettier/plugin-x plugin. Exiting."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
npm install --silent --global $INPUT_PRETTIER_PLUGINS
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Prettifing files..."
|
echo "Prettifing files..."
|
||||||
@@ -48,22 +54,35 @@ echo "Files:"
|
|||||||
prettier $INPUT_PRETTIER_OPTIONS || echo "Problem running prettier with $INPUT_PRETTIER_OPTIONS"
|
prettier $INPUT_PRETTIER_OPTIONS || echo "Problem running prettier with $INPUT_PRETTIER_OPTIONS"
|
||||||
|
|
||||||
# To keep runtime good, just continue if something was changed
|
# To keep runtime good, just continue if something was changed
|
||||||
if _git_changed;
|
if _git_changed; then
|
||||||
then
|
|
||||||
if $INPUT_DRY; then
|
if $INPUT_DRY; then
|
||||||
echo "Prettier found unpretty files!"
|
echo "Prettier found unpretty files!"
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
# Calling method to configure the git environemnt
|
# Calling method to configure the git environemnt
|
||||||
_git_setup
|
_git_setup
|
||||||
echo "Commiting and pushing changes..."
|
|
||||||
# Switch to the actual branch
|
if $INPUT_ONLY_CHANGED; then
|
||||||
git checkout $INPUT_BRANCH || echo "Problem checking out the specified branch: $INPUT_BRANCH"
|
# --diff-filter=d excludes deleted files
|
||||||
# Add changes to git
|
for file in $(git diff --name-only --diff-filter=d HEAD^..HEAD)
|
||||||
git add "${INPUT_FILE_PATTERN}" || echo "Problem adding your files with pattern ${INPUT_FILE_PATTERN}"
|
do
|
||||||
|
git add $file
|
||||||
|
done
|
||||||
|
else
|
||||||
|
# Add changes to git
|
||||||
|
git add "${INPUT_FILE_PATTERN}" || echo "Problem adding your files with pattern ${INPUT_FILE_PATTERN}"
|
||||||
|
fi
|
||||||
|
|
||||||
# Commit and push changes back
|
# Commit and push changes back
|
||||||
git commit -m "$INPUT_COMMIT_MESSAGE" --author="$GITHUB_ACTOR <$GITHUB_ACTOR@users.noreply.github.com>" ${INPUT_COMMIT_OPTIONS:+"$INPUT_COMMIT_OPTIONS"}
|
if $INPUT_SAME_COMMIT; then
|
||||||
_git_push
|
echo "Amending the current commit..."
|
||||||
|
git pull
|
||||||
|
git commit --amend --no-edit
|
||||||
|
git push origin -f
|
||||||
|
else
|
||||||
|
git commit -m "$INPUT_COMMIT_MESSAGE" --author="$GITHUB_ACTOR <$GITHUB_ACTOR@users.noreply.github.com>" ${INPUT_COMMIT_OPTIONS:+"$INPUT_COMMIT_OPTIONS"} || echo "No files added to commit"
|
||||||
|
git push origin
|
||||||
|
fi
|
||||||
echo "Changes pushed successfully."
|
echo "Changes pushed successfully."
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user