Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
perekopskiy committed May 7, 2024
1 parent 873d375 commit 4b476df
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release-please-cargo-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ jobs:

- name: Check last commit
run: |
git log -1 --pretty=%B
COMMIT=$(git log -1 --pretty=%B)
if [[ "$COMMIT" == "Update Cargo.lock" ]]; then
echo "Cargo.lock is already updated"
exit 0
else
echo "Cargo.lock should be updated"
fi
- name: Setup environment
run: |
Expand Down

0 comments on commit 4b476df

Please sign in to comment.