Skip to content

Commit 2888c1e

Browse files
chore: Refactor Github Action per b/485167538 (#1254)
Co-authored-by: Ben Knutson <[email protected]>
1 parent 8b10da6 commit 2888c1e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/release-generators.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ jobs:
2323
run: "gem install --no-document toys"
2424
- name: execute
2525
run: |
26-
toys release generators -v --fork ${{ github.event.inputs.args }}
26+
toys release generators -v --fork ${GITHUB_EVENT_INPUTS_ARGS}
27+
env:
28+
GITHUB_EVENT_INPUTS_ARGS: ${{ github.event.inputs.args }}

.github/workflows/tag-generators.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,6 @@ jobs:
3030
- name: Execute
3131
shell: bash
3232
run: |
33-
toys release tag-generators -v --remote=origin ${{ github.event.inputs.args }}
33+
toys release tag-generators -v --remote=origin ${GITHUB_EVENT_INPUTS_ARGS}
34+
env:
35+
GITHUB_EVENT_INPUTS_ARGS: ${{ github.event.inputs.args }}

0 commit comments

Comments
 (0)