Skip to content

Commit

Permalink
fix: add --no-immutable flag in update-backstage script (#1833)
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Schultz <[email protected]>
  • Loading branch information
schultzp2020 authored Oct 29, 2024
1 parent e1e96ed commit ab4e089
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/update-backstage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ on:
description: 'Skip updating dynamic plugins'
required: false
type: boolean
schedule:
- cron: "15 3 * * WED" # Every Wednesday at 3:15 AM

jobs:
create-pr:
Expand Down
2 changes: 1 addition & 1 deletion scripts/update-backstage.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ async function main() {
updateSupportedBackstageVersions(releaseVersion);

console.log("Updating lockfile...");
execSync("yarn install", { stdio: "inherit" });
execSync("yarn install --no-immutable", { stdio: "inherit" });

console.log("Deduping lockfile...");
execSync("yarn dedupe", { stdio: "inherit" });
Expand Down

0 comments on commit ab4e089

Please sign in to comment.