Skip to content

Commit

Permalink
Merge pull request #14 from ad-m/tenhobi-patch-1
Browse files Browse the repository at this point in the history
Fix action interpolation syntax
  • Loading branch information
Honza Bittner authored Oct 10, 2019
2 parents 3c4ff2e + a0f554c commit 9ab1401
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
| name | value | default | description |
| ---- | ----- | ------- | ----------- |
| github_token | string | | Token for the repo. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`. |
| github_token | string | | Token for the repo. Can be passed in using `${{ secrets.GITHUB_TOKEN }}`. |
| branch | string | 'master' | Destination branch to push changes. |
| force | boolean | false | Determines if force push is used. |
| directory | string | '.' | Directory to change to before pushing. |
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ branding:
color: green
inputs:
github_token:
description: 'Token for the repo. Can be passed in using {{ secrets.GITHUB_TOKEN }}'
description: 'Token for the repo. Can be passed in using ${{ secrets.GITHUB_TOKEN }}'
required: true
repository:
description: 'Repository name to push. Default or empty value represents current github repository (${GITHUB_REPOSITORY})'
Expand Down

0 comments on commit 9ab1401

Please sign in to comment.