1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-05 02:27:48 +02:00

94 Commits

Author SHA1 Message Date
Joaquin
33b47ea02c chore: updated README.md 2024-11-19 13:02:38 +01:00
Joaquin Santana
9591f5bb86 chore: using @joaquinjsb/release-please 2024-11-19 12:14:40 +01:00
Peter W
fa4e719bd0 docs: fix small README typo (#966)
fix typo

searching the other codebase seems to confirm this is a typo (results
show "local" not "loca")


https://github.com/search?q=repo%3Agoogleapis%2Frelease-please%20always-link-local&type=code

<!--
Thank you for proposing a pull request! Please note that SOME TESTS WILL
LIKELY FAIL due to how GitHub exposes secrets in Pull Requests from
forks.
Someone from the team will review your Pull Request and respond.

Please describe your change and any implementation details below.
-->

Signed-off-by: Peter W <techieshark@gmail.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2024-06-10 17:12:12 +00:00
Wolfram Sokollek
7b7ddcd412 docs: add info how to access monorepo path outputs (#1003)
Added description how to access monorepo step result outputs using []
syntax

It took me several hours to figure out how to access the outputs of
these monorepo packages. Hopefully, this will save others some time

---------

Signed-off-by: Wolfram Sokollek <8589105+WolfSoko@users.noreply.github.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2024-06-10 17:06:58 +00:00
Nathaniel Young
ef9cab9e8e docs: updates references to old organization name (#981)
- I'm not the maintainer, but I thought I put a pr for updating the old
organization name to the new one
- related to:
https://github.com/googleapis/release-please-action/issues/980
2024-05-14 16:32:16 +00:00
Christian Krogh Nielsen
ba1c241a2f docs: fix small typo in README.md (#907)
A very small typo I found in the `README.md` when making sure my usage
of release-please accommodates the new major version.

Changes `relese` to `release`

---------

Signed-off-by: Christian Krogh Nielsen <68676614+banner4422@users.noreply.github.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2023-12-13 14:51:42 -08:00
Rózsa Zoltán
18e07ccc3c docs: update versions in readme.md (#893)
- Replaced `v3` with `v4` in the examples
- Mapping names to certain references
- Changed `actions/checkout` version from `v2` to `v4`
- Changed `actions/setup-node` version from `v1` to `v4`

Signed-off-by: Rózsa Zoltán <67325669+rozsazoltan@users.noreply.github.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2023-12-04 16:04:12 -08:00
Waldemar Heinze
05524eb99e docs: update to target-branch option for non-default branch (#895)
This PR updates the docs to switch usages to `target-branch` as this has
changed in v4.
2023-12-04 15:58:19 -08:00
Finn | Sachsenspielt
e4cbb68124 docs: Updated supported flavours of repositories in README.md (#839)
As the release-please project now supports more repository flavours, I
have also added them here in the README.
I also added a reference to the original list of supported languages in
the release-please repository
(https://github.com/googleapis/release-please).

Signed-off-by: SACHSENSPIELT <59836848+SachsenspieltCoding@users.noreply.github.com>
Signed-off-by: Jeff Ching <chingor@google.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2023-12-01 14:00:19 -08:00
Jeff Ching
cec9370841 docs: remove package-name config from example (#892)
Signed-off-by: Jeff Ching <chingor@google.com>
2023-12-01 13:55:40 -08:00
Luca Lanziani
27c87c8aff docs: fix update output key names (#885)
Apparently the only key having the `release_` prefix is the `created`
key, the rest should all be present without that prefix.

I've updated the output keys in the readme, removing the `release_`
prefix.

Signed-off-by: Luca Lanziani <luca.lanziani@gmail.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2023-12-01 12:09:38 -08:00
Jeff Ching
19431a1126 fix: restore include-component-in-tag default (false) (#888)
v3 had this option and must be configurable or at least set to `false`
so that the default behavior is to create a plain `v1.2.3` tag (without
the component name prefixed).

Found this while dogfooding our own usage of the action (in this repo).
2023-12-01 11:37:56 -08:00
Jeff Ching
9cf05a09b1 feat!: v4 release (#871)
Any advanced configuration should be done via a
release-please-config.json.

Fixes #859
Fixes #858
Fixes #857
Fixes #852

feat!: remove most configuration options in favor of manifest
configuration to configure the release-please-action
refactor!: rewrite in typescript
feat!: remove command option in favor of setting `release-type` and
`skip-github-release`/`skip-github-pull-request`
feat!: run on node20
deps!: upgrade release-please to v16
2023-11-29 13:09:28 -08:00
Leland Clemmons
1ddb669c67 docs: emphasize the need for a personal access token (#842)
It isn't made explicit that the default token is one that doesn't allow
GitHub Actions CI jobs to run.

Updated the section to make that even more clear.

Signed-off-by: Leland Clemmons <leland.clemmons@gmail.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2023-11-06 22:38:11 -08:00
Tommi Tampio
d7869d8d45 docs: clarify changelog-types and its implications to version bumps (#844)
<!--
Thank you for proposing a pull request! Please note that SOME TESTS WILL
LIKELY FAIL due to how GitHub exposes secrets in Pull Requests from
forks.
Someone from the team will review your Pull Request and respond.

Please describe your change and any implementation details below.
-->
Relating to [release-please
issue](https://github.com/googleapis/release-please/issues/2096)

I was surprised that adding different changelog types result in patch
version bumps. I wasn't expecting this but going through the code it
seemed to be expected but undocumented behavior.

And this is why I would like to document the behavior here so other
people know and can plan whether to use it or not.

cheers!

---------

Signed-off-by: Tommi Tampio <46082658+stutommi@users.noreply.github.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2023-11-06 13:20:54 -08:00
Jeff Ching
2921787898 docs: add note about GitHub Actions creating pull request permission (#836)
Fixes #767
2023-10-02 19:48:53 +00:00
Michael Matloka
aed695c7cb docs: Clarify package-name in example (#803)
Signed-off-by: Michael Matloka <michal@matloka.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2023-09-11 09:31:09 -07:00
Sebastien
01f98cb9de docs: add sfdx supported release type (#781)
<!--
Thank you for proposing a pull request! Please note that SOME TESTS WILL
LIKELY FAIL due to how GitHub exposes secrets in Pull Requests from
forks.
Someone from the team will review your Pull Request and respond.

Please describe your change and any implementation details below.
-->

List `sfdx` as a supported release type
`sfdx` release type is included since release please
[v15.9.0](https://github.com/googleapis/release-please/releases/tag/v15.9.0),
which is used in the github action since
[v3.7.6](https://github.com/google-github-actions/release-please-action/releases/tag/v3.7.6).

Co-authored-by: Jeff Ching <chingor@google.com>
2023-06-23 11:31:06 -07:00
Pascal Bourdier
b5e4ec3382 doc: use last release-please-action version in README.md (#772)
use last release-please-action version
Signed-off-by: Pascal Bourdier <PascalBourdier@users.noreply.github.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2023-05-25 12:03:55 -07:00
Dave Kerr
0a07e4a339 docs: guide on attaching files to github release (#769)
also update the title of the 'adding additional files' to make it a bit
clearer that this section is 'updating additional files' and further
differentiate it from this new section.
2023-05-25 11:58:01 -07:00
Zeno Jiricek
a9c2712ee0 docs: provide information about workflow permissions (#725)
fixes #724

Added a section to mention required actions settings and workflow
permissions.

Signed-off-by: Zeno Jiricek <airtonix@users.noreply.github.com>
2023-03-06 12:27:08 -08:00
Philippe Laflamme
9963ea2aa8 feat: add pull-request-header input (#615)
Co-authored-by: Jeff Ching <chingor@google.com>
2022-12-08 08:45:33 -08:00
Moritz Wiesinger
7a173c3827 docs: Fix typo in action outputs (#626)
### This PR
- fixes a typo in the action outputs in README.md
- the code
[here](https://github.com/google-github-actions/release-please-action/blob/main/index.js#L214)
shows that the output variable is actually called `releases_created`
instead of `release_created`

Signed-off-by: Moritz Wiesinger <moritz.wiesinger@dynatrace.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2022-12-08 08:43:33 -08:00
Julian Li
714f07f3ae feat: support proxy configuration (#621)
support proxy configuration
2022-11-08 18:03:38 -08:00
Jeff Ching
173ff2ae09 docs: add documentation about caveats of using GITHUB_TOKEN (#557)
* docs: add documentation about caveats of using `GITHUB_TOKEN`

Signed-off-by: Jeff Ching <chingor@google.com>

* fix typo

Signed-off-by: Jeff Ching <chingor@google.com>

Signed-off-by: Jeff Ching <chingor@google.com>
2022-08-16 16:25:47 +00:00
Andrew Sweet
44827541d2 feat: provide inputs for releaser and manifest options in release-please 13.15 (#474)
* Synchronised action inputs with ReleaserConfig and ManifestOptions from release-please 13.15.0

* fix conflict from merge

* fix merge issue

* fix merge issue

Co-authored-by: Benjamin E. Coe <bencoe@google.com>
Co-authored-by: Jeff Ching <chingor@google.com>
2022-08-10 11:08:25 -07:00
tasshi / Masaharu TASHIRO
748eaa1a57 docs: add description for outputs.pr (#520)
* docs: fix description of `outputs.pr`

* docs: add `outputs.prs` to README.md

Co-authored-by: Jeff Ching <chingor@google.com>
2022-07-18 22:40:36 +00:00
Jonathan Netley
b2dd1ed06a docs(readme): command explanation (#434) 2022-04-20 13:34:11 -04:00
Matan Kushner
1511242f61 feat(deps): update release-please to 13.10.0 (#461)
* feat(deps): update release-please to 13.10.0

* Fix formatting and sort language list

* Add Java and Maven
2022-04-12 15:14:50 -07:00
Randy Merrill
e997222369 docs: Add manifest output information for referencing package output. (#433)
Co-authored-by: Benjamin E. Coe <bencoe@google.com>
2022-02-19 10:01:40 -05:00
Benjamin E. Coe
508179af9c docs: update references to google-github-actions (#423)
Fixes #421
2022-01-22 13:32:29 -05:00
Jonathan Cornaz
a487a5bdc8 feat: add extra-files input (#410) 2022-01-17 13:58:55 -05:00
Chao Yang Wu
049ff0419c docs: update python strategy update files in README.md (#415) 2022-01-12 18:36:58 -05:00
Jonathan Cornaz
c4b280eef1 docs(readme): Update defaults format to use booleans (true/false) (#408)
Co-authored-by: Benjamin E. Coe <bencoe@google.com>
2022-01-12 18:35:25 -05:00
Jef LeCompte
21cef46842 docs: update hyperlink (#411) 2022-01-12 18:32:40 -05:00
Benjamin E. Coe
52ffbbe392 feat(release-please)!: consolidate manifest and individual releasers (#398)
Major update to release-please which consolidates the manifest and single
releaser behavior into a single set of strategies, which can be used
on both split and mono-repos.

feat: adds support for draft pull requests.
feat: adds support for draft releases.
refactor!: if switching to manifest releaser, release_created will only be set if "." path is published.
refactor!: switch to using @actions/core getBooleanInput, accepted values for true = ["true", "True", "TRUE"], accepted values for false = ["false", "False", "FALSE"]
2021-12-29 19:54:42 +00:00
Neo Hsu
720c5f8f53 feat(input): add github GraphQL URL configuration for input (#385) 2021-10-14 14:34:54 -07:00
Neo Hsu
a0cd0f5123 feat: allow repo url to be set as argument to GitHub action (#380) 2021-10-04 08:40:03 -07:00
Benjamin E. Coe
76774804a8 feat(release-please): add signoff options to sign off commits (#374) 2021-09-23 15:19:02 -07:00
Neo Hsu
fd7f2fff26 feat(input): add github API URL configuration for input (#368) 2021-09-23 14:37:49 -07:00
Ilya Lesikov
9cd2fa859d docs: add go release type (#367)
Signed-off-by: Ilya Lesikov <ilya@lesikov.com>
2021-09-23 14:21:08 -07:00
Ilya Lesikov
435e216fbe feat: add bump-patch-for-minor-pre-major option (#365) 2021-09-23 14:02:28 -07:00
Philipp Piwo
59f4915177 feat: adds elixir support (#354)
Co-authored-by: Benjamin E. Coe <bencoe@google.com>
2021-09-09 14:56:33 -07:00
Artem Pakhomov
a5169255f2 docs: add php release-type (#351) 2021-09-08 09:53:39 -07:00
Benjamin E. Coe
3e6dc1e3aa fix: support alternate CHANGELOG.md path (#329)
Refs: https://github.com/googleapis/release-please/issues/924
2021-07-28 14:48:40 -07:00
Jacob Magnusson
68dda92155 docs: fix wording - minor not patch (#324) 2021-07-01 09:39:26 -07:00
Benjamin E. Coe
f48a175f37 feat(manifest): add manifest-pr command (#280) 2021-03-24 22:48:32 -07:00
Joel Dodge
45c32ccd24 feat: manifest based releaser https://git.io/JmVD4 (#273) 2021-03-24 14:59:21 -07:00
yi_Xu
d447fdb632 feat: add pull-request-title-pattern option (#259) 2021-03-03 10:20:34 -08:00
Jeff Ching
205f648a65 docs: document configuring multiple release branches (#245) 2021-03-01 17:46:27 -08:00