-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 857 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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