Skip to content
This repository was archived by the owner on Aug 17, 2026. It is now read-only.

E2E Test for Block Device Stability #142

E2E Test for Block Device Stability

E2E Test for Block Device Stability #142

name: Merge PR and Create Release
on:
pull_request:
types: [labeled]
jobs:
merge-and-release:
runs-on: ubuntu-latest
if: github.event.label.name == 'release' || github.event.label.name == 'ready-for-release'
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Merge PR and create release
uses: deckhouse/modules-actions/merge-and-release@v13
with:
pr_number: ${{ github.event.pull_request.number }}
pr_title: ${{ github.event.pull_request.title }}
changelog_path: "CHANGELOG"
base_branch: "main"
release_label: "release"
github_token: ${{ secrets.RELEASE_PAT || secrets.GITHUB_TOKEN }}