Skip to content

Commit bb3ca76

Browse files
authored
docs(README): remove extra space in variable syntax in README example (#201)
### Fix syntax error in GitHub Actions example in README This PR fixes a syntax error in the "Create a git committer string for an app installation" example in the README file. #### What was wrong? The example contained an incorrect space in the variable syntax: ```yaml ${ {steps.committer.outputs.string }} ``` This caused the example to fail, as GitHub Actions does not allow spaces in variable interpolation. #### What was fixed? The syntax was corrected to: ```yaml ${{ steps.committer.outputs.string }} ``` This fix ensures that users can copy and use the example without encountering any errors.
1 parent c1a2851 commit bb3ca76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
GH_TOKEN: ${{ steps.app-token.outputs.token }}
8787
- id: committer
8888
run: echo "string=${{ steps.app-token.outputs.app-slug }}[bot] <${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>" >> "$GITHUB_OUTPUT"
89-
- run: echo "committer string is ${ {steps.committer.outputs.string }}"
89+
- run: echo "committer string is ${{ steps.committer.outputs.string }}"
9090
```
9191

9292
### Configure git CLI for an app's bot user

0 commit comments

Comments
 (0)