mirror of
https://github.com/actions/github-script.git
synced 2025-12-08 08:06:23 +00:00
18 lines
408 B
YAML
18 lines
408 B
YAML
on:
|
|
push: {branches: main}
|
|
|
|
jobs:
|
|
integration:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- id: output-set
|
|
uses: actions/github-script@main
|
|
with:
|
|
script: return core.getInput('input-value')
|
|
result-encoding: string
|
|
input-value: output
|
|
- run: |
|
|
if [[ "${{steps.output-set.outputs.result}}" != "output" ]]; then
|
|
exit 1
|
|
fi
|