Draft a new data model release #191
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} | |