Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
added workflow to prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
bizob2828 committed Jan 5, 2022
1 parent e05a281 commit 98a1fa8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Prepare Release PR

on:
workflow_dispatch:
inputs:
release_type:
description: Type of release. patch or minor (major if breaking)
required: true
default: patch

jobs:
release-notes:
uses: newrelic/node-newrelic/.github/workflows/prep-release.yml@main
with:
release_type: ${{ github.event.inputs.release_type }}

0 comments on commit 98a1fa8

Please sign in to comment.