Skip to content

fix: change with test actions #1

fix: change with test actions

fix: change with test actions #1

Workflow file for this run

name: Create Release Note Workflow

Check failure on line 1 in .github/workflows/release-note.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release-note.yml

Invalid workflow file

`on` is not a valid event name
on:
on:
pull_request:
branches:
- feature/#264-add-release-feature # マージ先ブランチを feature に限定
types:
- closed
workflow_dispatch: # 手動実行用トリガー
jobs:
release:
if: >
github.event.pull_request.merged == true &&
contains(github.event.pull_request.title, 'konjacbot')
name: Create Release note
runs-on: ubuntu-latest
steps:
- name: Run Release Drafter
uses: release-drafter/release-drafter@v5
with:
config-name: .github/release-drafter.yml
publish: false
commitish: feature/#264-add-release-feature
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}