This repository was archived by the owner on Apr 15, 2025. It is now read-only.
AC - Update GeckoView #52874
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 periodically calls the relbot action to update GeckoView | |
| # Beta. | |
| # | |
| # The relbot action will look at Maven and compare the latest GV Beta | |
| # release available to what is currently configured in GeckoView.kt on | |
| # a hard coded A-C release branch. If the branch is outdated then | |
| # a new PR will be created to update the GV version and increment the | |
| # A-C version. | |
| # | |
| name: "AC - Update GeckoView" | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| on: | |
| schedule: | |
| - cron: '*/15 * * * *' | |
| jobs: | |
| main: | |
| name: "Update GeckoView" | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: "Update GV (On Main)" | |
| uses: mozilla-mobile/relbot@6.1.0 | |
| if: github.repository == 'mozilla-mobile/firefox-android' | |
| with: | |
| project: android-components | |
| command: update-main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: "Update GV (On Releases)" | |
| uses: mozilla-mobile/relbot@6.1.0 | |
| if: github.repository == 'mozilla-mobile/firefox-android' | |
| with: | |
| project: android-components | |
| command: update-releases | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |