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"