From 6dce92a4f8ae1dd50c1bdf3ce932478c64e3197d Mon Sep 17 00:00:00 2001 From: Benjamin Forehand Jr Date: Fri, 13 Sep 2024 11:03:49 -0500 Subject: [PATCH] chore(ci): Fix branch name that is created via external integration script (#11364) Because - The branch name is incorrect which could cause certain jobs to not trigger correctly This commit - Fixes that branch name Fixes #11363 --- scripts/external_integration_updater_script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/external_integration_updater_script.sh b/scripts/external_integration_updater_script.sh index 098167994..7ff32fe8f 100755 --- a/scripts/external_integration_updater_script.sh +++ b/scripts/external_integration_updater_script.sh @@ -17,7 +17,7 @@ done if (($(git status --porcelain | wc -c) > 0)); then git add . git commit -m "chore(nimbus): Check external firefox integrations and update keys" - git push origin -f check-external-firefox-integrations + git push origin -f check_external_firefox_integrations gh pr create -t "chore(nimbus): Check external firefox integrations and update keys" -b "" --base main --head check-external-firefox-integrations --repo mozilla/experimenter || echo "PR already exists, skipping" else echo "No config changes, skipping"