From 23f0c0bc45be3cdca4924f6df959222b248bcdfe Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 21 Dec 2023 20:30:17 +0000 Subject: [PATCH] chore: self mutation Signed-off-by: github-actions --- API.md | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/API.md b/API.md index cd447609..4e7b8c78 100644 --- a/API.md +++ b/API.md @@ -5163,7 +5163,7 @@ new GitHubActionStep(id: string, props: GitHubActionStepProps) | **Name** | **Type** | **Description** | | --- | --- | --- | -| id | string | *No description.* | +| id | string | Identifier for this step. | | props | GitHubActionStepProps | *No description.* | --- @@ -5172,6 +5172,8 @@ new GitHubActionStep(id: string, props: GitHubActionStepProps) - *Type:* string +Identifier for this step. + --- ##### `props`Required @@ -5539,9 +5541,9 @@ Operations can be created using the factory methods `JsonPatch.add()`, `JsonPatch.remove()`, etc. const output = JsonPatch.apply(input, - JsonPatch.replace('/world/hi/there', 'goodbye'), - JsonPatch.add('/world/foo/', 'boom'), - JsonPatch.remove('/hello'), + JsonPatch.replace('/world/hi/there', 'goodbye'), + JsonPatch.add('/world/foo/', 'boom'), + JsonPatch.remove('/hello'), ); @@ -5921,10 +5923,10 @@ For example, with the following yaml file ```yaml name: deploy on: - push: - branches: - - main - workflow_dispatch: {} + push: + branches: + - main + workflow_dispatch: {} ... ``` @@ -5941,10 +5943,10 @@ would result in the following yaml file: ```yaml name: deploy on: - push: - branches: - - main - workflow_call: {} + push: + branches: + - main + workflow_call: {} ... ```