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
@@ -84,7 +84,8 @@ steps:
84
84
| `proxy-server` | Configure a proxy server in the form of `<host>:<port>` e.g. `proxy-host.com:8080` |
85
85
| `skip-github-release` | If `true`, do not attempt to create releases. This is useful if splitting release tagging from PR creation. |
86
86
| `skip-github-pull-request` | If `true`, do not attempt to create release pull requests. This is useful if splitting release tagging from PR creation. |
87
-
| `skip-labeling` | If `true`, do not attempt to label the PR. |
87
+
| `skip-labeling` | If `true`, do not attempt to label the PR. |
88
+
| `dry-run` | If `true`, the action outputs pending releases and/or pending pull requests, but does not create them. |
88
89
89
90
## GitHub Credentials
90
91
@@ -94,7 +95,7 @@ the `token` configuration option.
94
95
If your repository is in an organization, you may need to
95
96
[permit github actions to create an approve PRs](https://stackoverflow.com/questions/72376229).
96
97
97
-
> [!WARNING]
98
+
> [!WARNING]
98
99
> If using GitHub Actions, you will need to specify a `token` for your workflows to run on
99
100
> Release Please's releases and PRs. See [the heading below](#other-actions-on-release-please-prs).
100
101
@@ -167,13 +168,16 @@ New types of releases can be [added here](https://github.com/googleapis/release-
167
168
168
169
> Properties that are available after the action executed.
| `releases_created` | `true` if any release was created, `false` otherwise |
173
-
| `paths_released` | A JSON string of the array of paths that had releases created (`[]` if nothing was released) |
174
-
| `prs_created` | `true` if any pull request was created or updated |
175
-
| `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) |
176
-
| `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. |
174
+
| `paths_released` | A JSON string of the array of paths that had releases created (`[]` if nothing was released). |
175
+
| `releases_pending` | `true` if any candidate release is pending (when running in dry-run mode). |
176
+
| `paths_to_release` | A JSON string of the array of paths that have pending candidate releases (when running in dry-run mode). |
177
+
| `prs_created` | `true` if any pull request was created or updated. |
178
+
| `prs_pending` | `true` if any candidate pull request is pending (when running in dry-run mode). |
179
+
| `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 objects](https://github.com/googleapis/release-please/blob/main/src/release-pull-request.ts#L20), unset otherwise) |
180
+
| `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 objects](https://github.com/googleapis/release-please/blob/main/src/release-pull-request.ts#L20), unset otherwise) |
0 commit comments