Skip to content

MARP-620 Add release-drafter workflow (#8) #3

MARP-620 Add release-drafter workflow (#8)

MARP-620 Add release-drafter workflow (#8) #3

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

Check failure on line 26 in .github/workflows/release-drafter.yml

View workflow run for this annotation

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

Invalid workflow file

error parsing called workflow ".github/workflows/release-drafter.yml" -> "axonivy-market/github-workflows/.github/workflows/release-drafter.yml@v4" (source tag with sha:cec1d238a7645647624f8a37c3563f08b7ae601c) : workflow is not reusable as it is missing a `on.workflow_call` trigger
with:
version: ${{ github.event.inputs.version }}
prerelease: ${{ github.event.inputs.prerelease }}