Skip to content

πŸ‘·β€β™‚οΈ Explicitly call out Packagemanagement (conflict with AnyPackage) #20

πŸ‘·β€β™‚οΈ Explicitly call out Packagemanagement (conflict with AnyPackage)

πŸ‘·β€β™‚οΈ Explicitly call out Packagemanagement (conflict with AnyPackage) #20

Workflow file for this run

# Drafts the next modulefast release notes every commit
name: Release Drafter
# Controls when the workflow will run
on:
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
defaults:
run:
shell: pwsh
jobs:
update_release_draft:
permissions:
# write permission is required to create a github release
contents: write
# write permission is required for autolabeler
# otherwise, read permission is required at least
pull-requests: write
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v6
with:
disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}