Skip to content

Draft a new data model release #92

Draft a new data model release

Draft a new data model release #92

name: Draft a new data model release
on:
workflow_run:
workflows: [ Check if PR has required labels ]
types: [ completed ]
jobs:
create-update-draft:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
permissions:
contents: write
pull-requests: read
steps:
- name: Create or update a release draft
uses: release-drafter/[email protected]
with:
config-name: release-template.yml
disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}