Skip to content

Commit 0f0d0ae

Browse files
Disable 3x updates (emscripten-forge#5348)
1 parent 1996512 commit 0f0d0ae

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/new_versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
update_versions:
1212
strategy:
1313
matrix:
14-
branch: [main, emscripten-3x]
14+
branch: [main]
1515

1616
if: (github.event_name == 'schedule' && github.repository == 'emscripten-forge/recipes') || (github.event_name != 'schedule')
1717
runs-on: [ubuntu-latest]

emci/bot/bump_recipes_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def empty_context_manager():
307307
prs_packages = [pr['title'].split()[1] for pr in all_prs]
308308

309309
# Merge PRs if possible
310-
if pr_target_branch in ["main", "emscripten-3x"]:
310+
if pr_target_branch in ["main"]:
311311
for pr,pr_pkg in zip(prs_id, prs_packages):
312312
# get the recipe dir
313313
recipe_dir = recipe_name_to_recipe_dir.get(pr_pkg)

emci/git_utils.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,5 @@ def make_pr_for_recipe(recipe_dir, pr_title, target_branch_name, branch_name, au
116116
'--label', 'Automerge' if automerge else 'Needs Tests'
117117
]
118118

119-
# this is not necessary, it can be removed later
120-
if target_branch_name == "main":
121-
args.extend(['--label', '4.X'])
122-
123119
# call gh to create a PR
124120
subprocess.check_call(args, cwd=os.getcwd())

0 commit comments

Comments
 (0)