Skip to content

Commit

Permalink
fix: git-auto-commit-action syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasbrugneaux committed Oct 19, 2023
1 parent fa5bebc commit d20ffef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
echo "GIT_EXIT_CODE=$?" >> $GITHUB_OUTPUT
- uses: stefanzweifel/git-auto-commit-action@v5
commit_message: "auto: Add new OFAC addresses"
with:
commit_message: "auto: Add new OFAC addresses"

- name: "Run if changes have been detected"
if: ${{ steps.bump_version.diff_flag.GIT_EXIT_CODE == 1 }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@ jobs:
NODE_AUTH_TOKEN: ${{ env.NPM_TOKEN }}

- uses: stefanzweifel/git-auto-commit-action@v5
commit_message: "auto: publish ${{ steps.bump_version.outputs.NPM_VERSION }}"
tagging_message: ${{ steps.bump_version.outputs.NPM_VERSION }}
with:
commit_message: "auto: publish ${{ steps.bump_version.outputs.NPM_VERSION }}"
tagging_message: ${{ steps.bump_version.outputs.NPM_VERSION }}

0 comments on commit d20ffef

Please sign in to comment.