We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42689ac commit a811a28Copy full SHA for a811a28
.github/workflows/generate-updates.yml
@@ -29,4 +29,6 @@ jobs:
29
run: "gem install --no-document toys"
30
- name: execute
31
run: |
32
- toys generate-updates -v --fork --use-dam ${{ github.event.inputs.args }}
+ toys generate-updates -v --fork --use-dam ${GITHUB_EVENT_INPUTS_ARGS}
33
+ env:
34
+ GITHUB_EVENT_INPUTS_ARGS: ${{ github.event.inputs.args }}
.github/workflows/presubmit.yml
@@ -35,4 +35,6 @@ jobs:
35
runs-on: ubuntu-20.04
36
steps:
37
- name: Required checks collector
38
- run: 'test "${{ needs.tests.result }}" = "success"'
+ run: 'test "${NEEDS_TESTS_RESULT}" = "success"'
39
40
+ NEEDS_TESTS_RESULT: ${{ needs.tests.result }}
0 commit comments