Skip to content

Commit

Permalink
modify
Browse files Browse the repository at this point in the history
  • Loading branch information
devmirza-bot authored May 24, 2024
1 parent 0f15c61 commit a715a14
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ jobs:
- name: Format
run: bun run format

- name: 'Run if changes have been detected'
if: steps.auto-commit-action.outputs.changes_detected == 'true'
run: echo "Changes!"

- name: 'Run if no changes have been detected'
if: steps.auto-commit-action.outputs.changes_detected == 'false'
run: echo "No Changes!"

- name: Commit All Changes
uses: stefanzweifel/[email protected]
id: auto-commit-action
Expand All @@ -46,11 +54,3 @@ jobs:
commit_author: Author <[email protected]>
commit_message: '[ci] Format changes'
skip_dirty_check: true

- name: 'Run if changes have been detected'
if: steps.auto-commit-action.outputs.changes_detected == 'true'
run: echo "Changes!"

- name: 'Run if no changes have been detected'
if: steps.auto-commit-action.outputs.changes_detected == 'false'
run: echo "No Changes!"

0 comments on commit a715a14

Please sign in to comment.