mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-12-20 02:15:12 -07:00
140ad3a48c
Bumps [GoogleCloudPlatform/release-please-action](https://github.com/googlecloudplatform/release-please-action) from 3 to 4. - [Release notes](https://github.com/googlecloudplatform/release-please-action/releases) - [Changelog](https://github.com/google-github-actions/release-please-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/googlecloudplatform/release-please-action/compare/v3...v4) --- updated-dependencies: - dependency-name: GoogleCloudPlatform/release-please-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
811 B
YAML
28 lines
811 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: GoogleCloudPlatform/release-please-action@v4
|
|
name: create release
|
|
with:
|
|
release-type: simple
|
|
bump-minor-pre-major: true # remove this to enable breaking changes causing 1.0.0 tag
|
|
changelog-types: |
|
|
[
|
|
{ "type": "feat", "section": "Features", "hidden": false },
|
|
{ "type": "fix", "section": "Patches", "hidden": false },
|
|
{ "type": "docs", "section": "Documentation", "hidden": false }
|
|
]
|
|
extra-files: |
|
|
SECURITY.md
|
|
docs/guide/getting-started.md
|
|
docs/pt-br/guide/getting-started.md
|
|
docs/zh-hans/guide/getting-started.md
|