mirror of
https://github.com/creyD/prettier_action.git
synced 2026-04-12 19:30:30 +02:00
Experimenting with a simpler form of composite actions
This commit is contained in:
29
action.yml
29
action.yml
@@ -7,7 +7,7 @@ inputs:
|
||||
commit_message:
|
||||
description: Commit message, will be ignored if used with same_commit
|
||||
required: false
|
||||
default: 'Prettified Code!'
|
||||
default: "Prettified Code!"
|
||||
same_commit:
|
||||
description: Update the current commit instead of creating a new one
|
||||
required: false
|
||||
@@ -18,11 +18,11 @@ inputs:
|
||||
file_pattern:
|
||||
description: File pattern used for `git add`, can't be used with only_changed!
|
||||
required: false
|
||||
default: '*'
|
||||
default: "*"
|
||||
prettier_options:
|
||||
description: Options for the `prettier` command
|
||||
required: false
|
||||
default: '--write **/*.js'
|
||||
default: "--write **/*.js"
|
||||
dry:
|
||||
description: Running the script in dry mode just shows whether there are files that should be prettified or not
|
||||
required: false
|
||||
@@ -38,26 +38,15 @@ inputs:
|
||||
prettier_plugins:
|
||||
description: Install Prettier plugins, i.e. `@prettier/prettier-php @prettier/some-other-plugin`
|
||||
required: false
|
||||
default: ''
|
||||
default: ""
|
||||
|
||||
runs:
|
||||
using: 'composite'
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: prettier
|
||||
- name: Prettify code!
|
||||
shell: bash
|
||||
run: >-
|
||||
PATH=$(cd $GITHUB_ACTION_PATH; npm bin):$PATH
|
||||
INPUT_COMMIT_MESSAGE="${{ inputs.commit_message }}"
|
||||
INPUT_COMMIT_OPTIONS="${{ inputs.commit_options }}"
|
||||
INPUT_DRY="${{ inputs.dry }}"
|
||||
INPUT_FILE_PATTERN="${{ inputs.file_pattern }}"
|
||||
INPUT_ONLY_CHANGED="${{ inputs.only_changed }}"
|
||||
INPUT_PRETTIER_OPTIONS="${{ inputs.prettier_options }}"
|
||||
INPUT_PRETTIER_PLUGINS="${{ inputs.prettier_plugins }}"
|
||||
INPUT_PRETTIER_VERSION="${{ inputs.prettier_version }}"
|
||||
INPUT_SAME_COMMIT="${{ inputs.same_commit }}"
|
||||
$GITHUB_ACTION_PATH/entrypoint.sh
|
||||
run: ${{ github.action_path }}/entrypoint.sh
|
||||
|
||||
branding:
|
||||
icon: 'award'
|
||||
color: 'green'
|
||||
icon: "award"
|
||||
color: "green"
|
||||
|
||||
Reference in New Issue
Block a user