Skip to content

Commit

Permalink
MARP-620 Add release-drafter workflow (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndkhanh-axonivy authored Aug 22, 2024
1 parent f7e76c4 commit 4fbd16d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release Drafter
on:
push:
branches:
- master
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
inputs:
version:
description: 'Release version'
required: true
prerelease:
description: 'Is this a prerelease?'
required: false
default: false
type: boolean
permissions:
contents: write
pull-requests: write
jobs:
build:
uses: axonivy-market/github-workflows/.github/workflows/release-drafter.yml@v4
with:
version: ${{ github.event.inputs.version }}
prerelease: ${{ github.event.inputs.prerelease }}

0 comments on commit 4fbd16d

Please sign in to comment.