Skip to content

v1.26.7-fork1

v1.26.7-fork1 #2

Workflow file for this run

name: Create release branch
on:
release:
types:
- published
branches:
- main
permissions: read-all
jobs:
fork_release_branch:
runs-on: ubuntu-22.04
if: github.repository == 'envoyproxy/envoy'
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Create release branch
run: ./ci/create_release_branch.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
reopen_branch:
runs-on: ubuntu-22.04
if: github.repository == 'envoyproxy/envoy'
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: refs/heads/main
- name: Reopen branch
run: ./ci/reopen_branch.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}