Skip to content

Commit 5d4f598

Browse files
authored
Merge commit from fork
1 parent 3af2204 commit 5d4f598

6 files changed

+18
-6
lines changed

.github/workflows/1-initialize-javascript-project.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ jobs:
5555

5656
- name: Dump GitHub comment context
5757
id: github_comment_step
58-
run: echo '${{ toJSON(github.event) }}'
58+
env:
59+
COMMENT_CONTEXT: ${{ toJson(github.event) }}
60+
run: echo "$COMMENT_CONTEXT"
5961

6062
# Check if NPM package.json exists in the expected location.
6163
- name: Check file existence

.github/workflows/2-configure-your-action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ jobs:
5555

5656
- name: Dump GitHub comment context
5757
id: github_comment_step
58-
run: echo '${{ toJSON(github.event) }}'
58+
env:
59+
COMMENT_CONTEXT: ${{ toJson(github.event) }}
60+
run: echo "$COMMENT_CONTEXT"
5961

6062
# Check if NPM package.json exists in the expected location.
6163
- name: Check file existence

.github/workflows/3-create-metadata-file.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ jobs:
5757

5858
- name: Dump GitHub comment context
5959
id: github_comment_step
60-
run: echo '${{ toJSON(github.event) }}'
60+
env:
61+
COMMENT_CONTEXT: ${{ toJson(github.event) }}
62+
run: echo "$COMMENT_CONTEXT"
6163

6264
# Check if action.yml file contains metadata.
6365
- name: Read action file contents

.github/workflows/4-create-javascript-files-for-action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ jobs:
5454

5555
- name: Dump GitHub comment context
5656
id: github_comment_step
57-
run: echo '${{ toJSON(github.event) }}'
57+
env:
58+
COMMENT_CONTEXT: ${{ toJson(github.event) }}
59+
run: echo "$COMMENT_CONTEXT"
5860

5961
# Check if action JavaScript exists in the expected location.
6062
- name: Check file existence

.github/workflows/5-add-action-to-workflow-file.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ jobs:
5757

5858
- name: Dump GitHub comment context
5959
id: github_comment_step
60-
run: echo '${{ toJSON(github.event) }}'
60+
env:
61+
COMMENT_CONTEXT: ${{ toJson(github.event) }}
62+
run: echo "$COMMENT_CONTEXT"
6163

6264
# Check if action.yml file contains metadata.
6365
- name: Read action file contents

.github/workflows/6-trigger-action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ jobs:
5757

5858
- name: Dump GitHub comment context
5959
id: github_comment_step
60-
run: echo '${{ toJSON(github.event) }}'
60+
env:
61+
COMMENT_CONTEXT: ${{ toJson(github.event) }}
62+
run: echo "$COMMENT_CONTEXT"
6163

6264
# Update README from step 6 to step X.
6365
- name: Update to step X

0 commit comments

Comments
 (0)