Correct action name #51
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Expect Self Parameter Action | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Run expect-self-params action | |
uses: ./ # This points to the local action in the repository | |
with: | |
params: > | |
{ | |
"workflow": { | |
"on": "[push, pull_request]" | |
}, | |
"jobs.test": { | |
"runs-on": "ubuntu-latest" | |
}, | |
"steps.foo": { | |
"continue-on-error": "true" | |
}, | |
"steps.bar": { | |
"timeout-minutes": "10" | |
} | |
} | |
- id: foo | |
run: echo hello | |
continue-on-error: true | |
- id: bar | |
run: sleep 5 | |
timeout-minutes: 10 |