Skip to content

Tracking pull request to merge release-1.26.0 to main #9

Tracking pull request to merge release-1.26.0 to main

Tracking pull request to merge release-1.26.0 to main #9

name: Create Release after merging to main
on:
pull_request:
types: [closed]
branches:
- 'main'
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create Release
uses: softprops/action-gh-release@v1
with:
name: ${{ github.event.pull_request.head.ref }}
tag_name: ${{ github.event.pull_request.head.ref }}
body: |
${{ github.event.pull_request.body }}
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
prerelease: false