ref at call site doesn't work, try set branch name #11
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
name: Update Third Party | |
on: | |
push: | |
branches: | |
- copybara | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Token | |
id: get_workflow_token | |
uses: peter-murray/workflow-application-token-action@v3 | |
with: | |
application_id: ${{ secrets.BOT_ID }} | |
application_private_key: ${{ secrets.BOT_PRIVATE_KEY }} | |
- name: Checkout Copybara | |
uses: actions/checkout@v4 | |
with: | |
repository: google/copybara | |
ref: c4cf60695a656d16c1e70e79eea0654e05e5a945 | |
- name: Cache Copybara | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/bazel | |
key: ${{ runner.os }}-bazel-${{ hashFiles('.bazelversion', '.bazelrc', 'WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel') }} | |
restore-keys: | | |
${{ runner.os }}-bazel- | |
- name: Ensure Copybara dependencies | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
path: make-it-mmd | |
- name: Run Copybara | |
env: | |
GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }} | |
run: | | |
gh auth setup-git | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
echo "https://x-access-token:${GITHUB_TOKEN}@api.github.com" > ~/.git-credentials | |
bazel run //java/com/google/copybara -- ${{ github.workspace }}/make-it-mmd/copy.bara.sky --force blendshape-viewer 37778f2cee1d9a24e2adc52b3468599a581b7b5a --github-destination-pr-branch="copybara_test" |