You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-9Lines changed: 13 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,8 @@ steps:
83
83
| `proxy-server` | Configure a proxy servier in the form of `<host>:<port>` e.g. `proxy-host.com:8080` |
84
84
| `skip-github-release` | If `true`, do not attempt to create releases. This is useful if splitting release tagging from PR creation. |
85
85
| `skip-github-pull-request` | If `true`, do not attempt to create release pull requests. This is useful if splitting release tagging from PR creation. |
86
-
| `skip-labeling` | If `true`, do not attempt to label the PR. |
86
+
| `skip-labeling` | If `true`, do not attempt to label the PR. |
87
+
| `dry-run` | If `true`, the action outputs pending releases and/or pending pull requests, but does not create them. |
87
88
88
89
## GitHub Credentials
89
90
@@ -93,7 +94,7 @@ the `token` configuration option.
93
94
If your repository is in an organization, you may need to
94
95
[permit github actions to create an approve PRs](https://stackoverflow.com/questions/72376229).
95
96
96
-
> [!WARNING]
97
+
> [!WARNING]
97
98
> If using GitHub Actions, you will need to specify a `token` for your workflows to run on
98
99
> Release Please's releases and PRs. See [the heading below](#other-actions-on-release-please-prs).
99
100
@@ -165,13 +166,16 @@ New types of releases can be [added here](https://github.com/googleapis/release-
165
166
166
167
> Properties that are available after the action executed.
| `releases_created` | `true` if any release was created, `false` otherwise |
171
-
| `paths_released` | A JSON string of the array of paths that had releases created (`[]` if nothing was released) |
172
-
| `prs_created` | `true` if any pull request was created or updated |
173
-
| `pr` | A JSON string of the [PullRequest object](https://github.com/googleapis/release-please/blob/main/src/pull-request.ts#L15) (unset if no release created) |
174
-
| `prs` | A JSON string of the array of [PullRequest objects](https://github.com/googleapis/release-please/blob/main/src/pull-request.ts#L15) (unset if no release created) |
| `releases_created` | `true` if any release was created, `false` otherwise. |
172
+
| `paths_released` | A JSON string of the array of paths that had releases created (`[]` if nothing was released). |
173
+
| `releases_pending` | `true` if any candidate release is pending (when running in dry-run mode). |
174
+
| `paths_to_release` | A JSON string of the array of paths that have pending candidate releases (when running in dry-run mode). |
175
+
| `prs_created` | `true` if any pull request was created or updated. |
176
+
| `prs_pending` | `true` if any candidate pull request is pending (when running in dry-run mode). |
177
+
| `pr` | A JSON string of the [PullRequest object](https://github.com/googleapis/release-please/blob/main/src/pull-request.ts#L15) (in dry-run [ReleasePullRequest object](https://github.com/googleapis/release-please/blob/main/src/release-pull-request.ts#L20), unset otherwise) |
178
+
| `prs` | A JSON string of the array of [PullRequest objects](https://github.com/googleapis/release-please/blob/main/src/pull-request.ts#L15) (in dry-run [ReleasePullRequest object](https://github.com/googleapis/release-please/blob/main/src/release-pull-request.ts#L20), unset otherwise) |
0 commit comments