-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: adding support for ReleasePlease github action
- Loading branch information
1 parent
44c7267
commit cc3fe28
Showing
7 changed files
with
77 additions
and
18 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
".": "1.0.0" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", | ||
"release-type": "simple", | ||
"include-component-in-tag": false, | ||
"changelog-path": "notes/CHANGELOG.md", | ||
"packages": { | ||
".": { | ||
"extra-files": [ | ||
"notes/VERSION.md" | ||
] | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Release Workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: googleapis/release-please-action@v4 | ||
id: release | ||
with: | ||
# this assumes that you have created a personal access token | ||
# (PAT) and configured it as a GitHub action secret named | ||
# `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important). | ||
# token: ${{ secrets.GITHUB_TOKEN }} | ||
token: ${{ github.token }} | ||
config-file: .github/release-please/release-please-config.json | ||
manifest-file: .github/release-please/.release-please-manifest.json | ||
# this is a built-in strategy in release-please, see "Action Inputs" | ||
# for more options | ||
# release-type: simple | ||
|
||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,13 @@ | ||
# Changelog | ||
All notable change to this project will be documented in this file. | ||
>[!NOTE] | ||
> This file and it's version format is automatically | ||
> generated by [Please-Release](https://github.com/googleapis/release-please-action), | ||
> and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
## [1.2.14](https://github.com/ScottKirvan/ReleasePleaseTest/compare/v1.2.13...v1.2.14) (2024-12-13) | ||
|
||
## [Unreleased] | ||
|
||
## [0.0.1] - 2023-01-06 | ||
### Added | ||
- initial repo/template check-in | ||
### Bug Fixes | ||
|
||
----------------------------------------------------------------------------- | ||
## Changelog Template: | ||
- ***Added*** - for new features. | ||
- ***Changed*** - for changes in existing functionality. | ||
- ***Depricated*** - for soon-to-be removed features. | ||
- ***Removed*** - for now removed features. | ||
- ***Fixed*** - for any bug fixes. | ||
- ***Refactored*** - no functional changes, just cleanup or reorganizing. | ||
- ***Security*** - in case of vulnerabilities. | ||
* change where my version info gets written ([75d58cb](https://github.com/ScottKirvan/ReleasePleaseTest/commit/75d58cb57ec461a179962bd2d29c115675b881a6)) | ||
* triggering a release ([dbe3ba9](https://github.com/ScottKirvan/ReleasePleaseTest/commit/dbe3ba949ddcd18d1584099d9f56963b1da10404)) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<!-- x-release-please-start-version --> | ||
version=1.2.14 | ||
<!-- x-release-please-end --> |
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