Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename prerel branch to rel-8.2 #19863

Merged
merged 1 commit into from
May 20, 2024
Merged
Changes from all 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
10 changes: 5 additions & 5 deletions .github/workflows/auto-pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Merge branch prerel-8.2 with rel-8.1
name: Merge branch rel-8.2 with rel-8.1
on:
push:
branches:
Expand All @@ -7,15 +7,15 @@ permissions:
contents: read

jobs:
merge-prerel-8-2-with-rel-8-1:
merge-rel-8-2-with-rel-8-1:
permissions:
contents: write # for peter-evans/create-pull-request to create branch
pull-requests: write # for peter-evans/create-pull-request to create a PR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: prerel-8.2
ref: rel-8.2
- name: Reset promotion branch
run: |
git fetch origin rel-8.1:rel-8.1
Expand All @@ -24,8 +24,8 @@ jobs:
uses: peter-evans/create-pull-request@v3
with:
branch: auto-merge/rel-8-1/${{github.run_number}}
title: Merge branch prerel-8.2 with rel-8.1
body: This PR generated automatically to merge prerel-8.2 with rel-8.1. Please review the changed files before merging to prevent any errors that may occur.
title: Merge branch rel-8.2 with rel-8.1
body: This PR generated automatically to merge rel-8.2 with rel-8.1. Please review the changed files before merging to prevent any errors that may occur.
reviewers: maliming
token: ${{ github.token }}
- name: Merge Pull Request
Expand Down
Loading