File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ jobs:
110
110
run : |
111
111
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
112
112
PR_NUMBER="${{ github.event.pull_request.number }}"
113
- BRANCH="lock-file-maintenance -${PR_NUMBER}"
113
+ BRANCH="dist-updated -${PR_NUMBER}"
114
114
115
115
echo "Detected uncommitted changes after build. Checking in changes on branch: ${BRANCH}"
116
116
git checkout -b ${BRANCH}
@@ -124,17 +124,17 @@ jobs:
124
124
125
125
echo "Committing changes in dist/"
126
126
git add dist/
127
- git commit --message "chore: changes caused by updating lock files . See #${PR_NUMBER}"
127
+ git commit --message "chore: commiting changes in dist/ . See #${PR_NUMBER}"
128
128
129
- # Remove GitHub's merging the tip of lock-file-maintenance branch into main's commit
129
+ # Remove GitHub's merging the tip of dist-updated branch into main's commit
130
130
# it's not needed as we require a branch to up-to-date with main
131
131
git rebase origin/main --autosquash
132
132
133
133
echo "Pushing branch"
134
134
git push --force --set-upstream origin HEAD
135
135
136
136
echo "Creating PR"
137
- gh pr create --base main --head ${BRANCH} --title "chore(deps): rebuilding because of lock file maintenance " --fill
137
+ gh pr create --base main --head ${BRANCH} --title "chore(deps): rebuilding because files in dist have updated " --fill
138
138
139
139
exit 1
140
140
fi
You can’t perform that action at this time.
0 commit comments