Skip to content

Commit

Permalink
Merge pull request #133 from khanlab/akhanf-patch-1
Browse files Browse the repository at this point in the history
Create manual_release_drafter.yml
  • Loading branch information
akhanf authored Dec 18, 2021
2 parents 5baafa2 + 9030fd3 commit b22790d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/manual_release_drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Manual release-drafter update

on:
workflow_dispatch:
inputs:
author:
description: "Author"
required: true
default: "github-actions[bot] (user publishing release)"
comments:
description: "Update release drafter notes"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Print workflow information
run: |
echo "Author: ${{ github.event.inputs.author }}"
echo "Date: ${{ github.event.inputs.date }}"
echo "Comments: ${{ github.event.inputs.comments }}"
- uses: actions/checkout@v2

- name: Update changelog
uses: release-drafter/release-drafter@v5
id: release-drafter
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b22790d

Please sign in to comment.