From 254fa29f11472f13f8cd583548cf0a995f429801 Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Tue, 14 Mar 2023 08:56:08 +0100 Subject: [PATCH] Bug 1822244 - remove ac-create-release workflow This hasn't done anything since v104: https://github.com/mozilla-mobile/relbot/pull/80 --- .github/workflows/ac-create-release.yml | 40 ----------------------- .github/workflows/ac-update-geckoview.yml | 4 --- 2 files changed, 44 deletions(-) delete mode 100644 .github/workflows/ac-create-release.yml diff --git a/.github/workflows/ac-create-release.yml b/.github/workflows/ac-create-release.yml deleted file mode 100644 index 36d88a85102a..000000000000 --- a/.github/workflows/ac-create-release.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/ - -# -# This workflow triggers if android-components/.buildconfig.yml is changed on any of the -# release branches. It will ask the relbot action to create a release. -# -# Currently relbot has a hard-coded "current A-C" version; there is no -# relationship between what relbot does and on which branch the -# .builconfig.yml is updated. If the updated branch does not match with -# what relbot thinks is current, then nothing happens. -# - -name: "AC - Create Release" - -permissions: - contents: write - pull-requests: write - -on: - push: - branches: - - 'releases/**' - paths: - - 'android-components/.buildconfig.yml' - -jobs: - main: - name: "Create Release" - runs-on: ubuntu-20.04 - steps: - - name: "Create Release" - uses: mozilla-mobile/relbot@5.0.2 - if: github.repository == 'mozilla-mobile/firefox-android' - with: - project: android-components - command: create-releases - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/ac-update-geckoview.yml b/.github/workflows/ac-update-geckoview.yml index 7cfdba866f9d..08a9848ffb4e 100644 --- a/.github/workflows/ac-update-geckoview.yml +++ b/.github/workflows/ac-update-geckoview.yml @@ -12,10 +12,6 @@ # a new PR will be created to update the GV version and increment the # A-C version. # -# When the PR lands, the create-release workflow triggers, which will -# tag a release, which ultimately results in a full A-C build and push -# to Maven. -# name: "AC - Update GeckoView"