ci: clarify fail-fast lockfile refresh behavior
This commit is contained in:
6
.github/workflows/refresh-lockfile.yml
vendored
6
.github/workflows/refresh-lockfile.yml
vendored
@@ -57,7 +57,11 @@ jobs:
|
|||||||
git config user.email "lockfile-bot@users.noreply.github.com"
|
git config user.email "lockfile-bot@users.noreply.github.com"
|
||||||
git add pnpm-lock.yaml
|
git add pnpm-lock.yaml
|
||||||
git commit -m "chore(lockfile): refresh pnpm-lock.yaml"
|
git commit -m "chore(lockfile): refresh pnpm-lock.yaml"
|
||||||
git push
|
git push || {
|
||||||
|
echo "Push failed because master moved during lockfile refresh."
|
||||||
|
echo "A later refresh run should recompute the lockfile from the newer master state."
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pnpm install --frozen-lockfile
|
run: pnpm install --frozen-lockfile
|
||||||
|
|||||||
Reference in New Issue
Block a user