AC - Update GeckoView #52249
This file contains 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/[email protected] | |
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/[email protected] | |
if: github.repository == 'mozilla-mobile/firefox-android' | |
with: | |
project: android-components | |
command: update-releases | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |