We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b3c9c9 commit 0090adcCopy full SHA for 0090adc
.github/workflows/release-please.yml
@@ -56,11 +56,11 @@ jobs:
56
done
57
58
# Commit the change back to the PR branch
59
- git config user.name "github-actions[bot]"
60
- git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
+ # Amend the Release Please commit to include our fixes
+ # This keeps the PR clean with a single commit
61
git add packages/project/package.json package-lock.json
62
- git commit -m "ci(release-please): update @ui5/builder peer dependency and regenerate lockfile"
63
- git push
+ git commit --amend --no-edit
+ git push --force-with-lease
64
env:
65
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66
0 commit comments