release-please-action
release-please-action copied to clipboard
automated releases based on conventional commits
This is working pretty great in my testing so far, however I think i'm missing the connection to get this to work exactly as I would like it (meaning, I...
 `npm publish` will not run when the job re-run. The action failed because i had set error `NPM_TOKEN` last time. my action link: https://github.com/Val-istar-Guo/component-template/actions/runs/820446327/workflow
PR: https://github.com/gengjiawen/node-gyp/pull/2/files 
### TL;DR I have 2 action YAML files... one for release-please called `release-please.yml` and one for the Gradle build, test and publish called `gradle-build.yml`. `gradle-build.yml` runs on pull requests successfully,...
Using the Release-please action in this repo: https://github.com/ptarmiganlabs/butler-sheet-icons The same config that works in other repos just won't work in this one. Which is strange. Release-please used to work for...
The action fails for release-type as node, but works with python(tested with simple as well) in organisation accounts. The release-type node fails in organisation accounts but works in personal user...
### TL;DR The release-please CLI supports the changelog-host parameter, however it's not available in the release-please-action. ### Detailed design _No response_ ### Additional information _No response_
### TL;DR The release-please-action creates releases and comments them on the PR, but stops before completing. Subsequent steps which then rely on `steps.release.outputs.releases_created` are skipped. I believe what is happening...
Currently it's in single line, this can be difficulty to maintain if it's has many subdomain like Node.js (build, CI, docs and others) ``` changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]' ```
After trying out the action with the following file ```yaml name: Release on: push: branches: [main] jobs: release-please: runs-on: ubuntu-latest steps: - uses: GoogleCloudPlatform/release-please-action@v2 id: release with: token: ${{ secrets.RELEASE_PLEASE_TOKEN...