Skip to content

Release edb-postgres-distributed-for-kubernetes-v1.0.2 #131

Release edb-postgres-distributed-for-kubernetes-v1.0.2

Release edb-postgres-distributed-for-kubernetes-v1.0.2 #131

Workflow file for this run

# Create a PR for a release when a commit is pushed on a release branch
name: release-pr
on:
push:
branches:
- release/*
jobs:
pull-request:
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/[email protected]
-
name: Get tag
run: |
echo "TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
-
name: Pull Request
id: open-pr
uses: repo-sync/[email protected]
with:
destination_branch: "main"
github_token: ${{ secrets.GITHUB_TOKEN }}
pr_body: "Automated PR. Will trigger the ${{ env.TAG }} release when approved."
pr_label: release
pr_title: "Release ${{ env.TAG }}"