Skip to content

Commit 1f70696

Browse files
committed
fix: WORKFLOW_BRANCH reset to main
1 parent 133076a commit 1f70696

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/get-node-version/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
const semver = require(path.join(process.env.GITHUB_ACTION_PATH, 'node_modules/semver'));
2828
2929
const defaultVersion = '20.9';
30-
30+
3131
// Define the versions to check against the package.json engines field, in order of preference
3232
// See https://github.com/actions/node-versions/releases for available versions
3333
const versionsToCheck = [defaultVersion, '24.9'].map((v) => semver.minVersion(v).version);
@@ -37,7 +37,7 @@ runs:
3737
core.setFailed(`Error: package.json not found at ${packageJsonPath}`);
3838
return;
3939
}
40-
40+
4141
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
4242
const requiredRange = packageJson.engines?.node;
4343

.github/workflows/build-node-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ on:
110110
required: false
111111

112112
env:
113-
WORKFLOW_BRANCH: "mp/node_version"
113+
WORKFLOW_BRANCH: "main"
114114
POSTGRES_HOSTNAME: postgres_${{ github.job }}_${{ inputs.deduplication_id }}_${{ github.run_id }}_${{ github.run_attempt }}
115115

116116
permissions:

0 commit comments

Comments
 (0)