diff --git a/.github/workflows/create-github-release.yml b/.github/workflows/create-github-release.yml index a03dbf6e..6dff82e8 100644 --- a/.github/workflows/create-github-release.yml +++ b/.github/workflows/create-github-release.yml @@ -6,12 +6,12 @@ on: - main - prerelease/** tags-ignore: - - "*" + - '*' workflow_dispatch: inputs: prerelease: type: string - description: "Name to use for the prerelease: beta, dev, etc. NOTE: If this is already set in the package.json, it does not need to be passed in here." + description: 'Name to use for the prerelease: beta, dev, etc. NOTE: If this is already set in the package.json, it does not need to be passed in here.' jobs: release: @@ -19,6 +19,7 @@ jobs: secrets: inherit with: prerelease: ${{ inputs.prerelease }} + generate-readme: false # If this is a push event, we want to skip the release if there are no semantic commits # However, if this is a manual release (workflow_dispatch), then we want to disable skip-on-empty # This helps recover from forgetting to add semantic commits ('fix:', 'feat:', etc.)