feat: Add workflow to verify files made by PG Tools #34
Workflow file for this run
This file contains 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: Self Release Please | |
on: | |
pull_request: | |
branches: | |
- main | |
- release* | |
types: | |
- closed | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Specific version number to release, eg '3.0.0' or '3.1.0-rc.0'. If not provided, Release Please will determine the version. | |
required: false | |
jobs: | |
release-please: | |
secrets: inherit | |
uses: hedia-team/.github/.github/workflows/release-please.yml@latest | |
with: | |
test-reports: false | |
version: ${{ github.event.inputs.version || '' }} |