Merge pull request #3632 from ingef/release #92
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: "Reintegrate master" | |
on: | |
push: | |
branches: | |
- master | |
env: | |
REINTEGRATE_BRANCH_NAME: reintegrate-main | |
jobs: | |
reintegrate-master: | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.REPO_SCOPED_TOKEN }} | |
submodules: true | |
- name: Configure git | |
run: | | |
git config user.name 'github-actions[bot]' | |
git config user.email 'github-actions[bot]@users.noreply.github.com' | |
git config push.autoSetupRemote true | |
- name: Switch to intermediate branch | |
run: git checkout -b $REINTEGRATE_BRANCH_NAME | |
- name: Push intermediate Branch | |
run: git push -f | |
- name: Create pull-request | |
run: > | |
gh pr create | |
-l automated | |
-a awildturtok,thoniTUB | |
-r awildturtok,thoniTUB | |
-B develop | |
--title "Reintegrate Main" | |
--body "Merge main branch back into develop branch" | |
--head $REINTEGRATE_BRANCH_NAME | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Modify the request in the scope of a PAT (an actual user). | |
# This should allow to trigger subsequent actions with the merge commit. | |
- name: Modify pull request | |
run: > | |
gh pr merge | |
--merge | |
--auto | |
--delete-branch | |
env: | |
GH_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }} |