From 62dd416942e80a218e60db970e7cadc86994ccdd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 16:54:16 -0500 Subject: [PATCH] test a7 workflow --- .github/workflows/create_rc_pr.yml | 2 +- tasks/release.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/create_rc_pr.yml b/.github/workflows/create_rc_pr.yml index dfec796d9e4342..ff2b781c5dc1a8 100644 --- a/.github/workflows/create_rc_pr.yml +++ b/.github/workflows/create_rc_pr.yml @@ -11,7 +11,7 @@ env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} AGENT6_RELEASE_BRANCH: '6.53.x' # IS_AGENT6_RELEASE: ${{ github.event.schedule == '0 9 * * 1' }} - IS_AGENT6_RELEASE: "true" + IS_AGENT6_RELEASE: "false" permissions: {} jobs: diff --git a/tasks/release.py b/tasks/release.py index a19493f2eccf6a..c07edfa4d682a2 100644 --- a/tasks/release.py +++ b/tasks/release.py @@ -529,14 +529,14 @@ def create_rc(ctx, release_branch, patch_version=False, upstream="origin", slack ) # Step 4 - If slack workflow webhook is provided, send a slack message - if slack_webhook: - print(color_message("Sending slack notification", "bold")) - payload = { - "pr_url": pr_url, - "version": str(new_highest_version), - } - - ctx.run(f"curl -X POST -H 'Content-Type: application/json' --data '{json.dumps(payload)}' {slack_webhook}") + # if slack_webhook: + # print(color_message("Sending slack notification", "bold")) + # payload = { + # "pr_url": pr_url, + # "version": str(new_highest_version), + # } + + # ctx.run(f"curl -X POST -H 'Content-Type: application/json' --data '{json.dumps(payload)}' {slack_webhook}") @task