Skip to content

Commit

Permalink
Fix GH Actions variable naming (#120)
Browse files Browse the repository at this point in the history
Add `inputs.` to the variable name, as this is required.
  • Loading branch information
CasperWA authored Mar 15, 2023
1 parent a1c8753 commit 300be43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_automerge_prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Perform local changes
if: inputs.perform_changes
run: |
if [ -z "${{ inputs.git_username }}" ] || [ -z "${{ inputs.git_email }}" ] || [ -z "${{ changes }}" ]; then
if [ -z "${{ inputs.git_username }}" ] || [ -z "${{ inputs.git_email }}" ] || [ -z "${{ inputs.changes }}" ]; then
echo "git_username, git_email and changes MUST be supplied."
exit 1
fi
Expand Down

0 comments on commit 300be43

Please sign in to comment.