Skip to content

fix: Update README.md #36

fix: Update README.md

fix: Update README.md #36

# This is a basic workflow to help you get started with Actions
name: update-release-notes
# Controls when the workflow will run
on:
pull_request_target:
types:
- closed
branches:
- 'main'
- 'release-v**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
if_merged:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- run: |
echo "PR ${{ github.event.pull_request.title }} (#${{ github.event.pull_request.number }}) has been merged"
echo "${{ github.event.pull_request.title }} (#${{ github.event.pull_request.number }})" >> beta-releasenotes.md
cat beta-releasenotes.md