Skip to content

Commit 2f0d7d4

Browse files
committed
add workflow.yml
1 parent 5a4c569 commit 2f0d7d4

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish Release Notes
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
target_branch:
7+
description: 'Branch to run this action on'
8+
required: true
9+
default: 'main'
10+
11+
jobs:
12+
sync-release-notes:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Run custom release notes sync action
17+
uses: ./.github/actions/sync-release-notes
18+
env:
19+
PAT: ${{ secrets.PAT }}
20+
TARGET_BRANCH: ${{ github.event.inputs.target_branch }}

0 commit comments

Comments
 (0)