Skip to content
Merged
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build_release_candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,8 @@ jobs:
python gen_managed_doc.py --output_location ${{ runner.temp }}/managed-io.md
- name: Create commit on beam branch
working-directory: beam
env:
GH_TOKEN: ${{ github.event.inputs.REPO_TOKEN }}
run: |
git fetch origin master
git checkout -b $BRANCH_NAME origin/master
Expand All @@ -605,6 +607,7 @@ jobs:
git config user.email actions@"$RUNNER_NAME".local
git add ${{ env.MANAGED_IO_DOCS_PATH }}
git commit --allow-empty -m "Update managed-io.md for release ${{ github.event.inputs.RELEASE }}-RC${{ github.event.inputs.RC }}."
git remote set-url origin https://x-access-token:${GH_TOKEN}@github.com/apache/beam
git push -f --set-upstream origin $BRANCH_NAME
- name: Create beam PR
working-directory: beam
Expand Down
Loading