Decrease maven local repo priority to fix CI builds #21
Workflow file for this run
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 workflow creates a new PR with the updated build ids for Playground prebuilts. | |
# To run it, navigate to https://github.com/androidx/androidx/actions/workflows/update_prebuilts.yml | |
# and click "Run workflow" | |
name: Update Prebuilts | |
on: {} | |
jobs: | |
update-prebuilts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout androidx repo" | |
uses: actions/checkout@v2 | |
- name: "Run update prebuilt snapshot ids script" | |
shell: bash | |
run: development/update_playground.sh | |
- name: "Check if anything changed" | |
shell: bash | |
id: "check-for-changes" | |
run: | | |
set -x | |
git status | |
HAS_CHANGES=`git status --porcelain|grep playground\.properties|wc -l` | |
echo "::set-output name=has_changes::$HAS_CHANGES" | |
- name: "Create a PR" | |
shell: bash | |
id: "create-pr" | |
if: ${{ steps.check-for-changes.outputs.has_changes >= 1 }} | |
run: | | |
set -x | |
BRANCH_NAME="ci-workflow-bot/update-prebuilts-$(date "+%Y-%m-%d-%H-%M")/${{ github.run_id }}-${{ github.run_number }}" | |
git config user.email "[email protected]" | |
git config user.name "AndroidX Github Bot" | |
git checkout -b $BRANCH_NAME | |
git add playground-common/playground.properties | |
git commit -m "Update playground snapshot ids" # PR body overrides this commit message | |
git push origin $BRANCH_NAME | |
# create pull request | |
gh pr create --base ${{ github.event.inputs.target-branch || 'androidx-main' }} \ | |
--title "[AndroidX Github Bot] Update playground snapshot ids" \ | |
--body "This CL was created by the update_prebuilts workflow. | |
${{ github.event.inputs.comment || '' }} | |
Bug: n/a | |
Test: CI" | |
env: | |
GITHUB_TOKEN: ${{ secrets.ANDROIDX_GITHUB_BOT_TOKEN }} |