Skip to content

Commit 7d990a0

Browse files
author
Ludovic TOURMAN
committed
Dummy commit to trigger workflows
1 parent 20d8ecc commit 7d990a0

File tree

8 files changed

+26
-10
lines changed

8 files changed

+26
-10
lines changed

.github/workflows/build-test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,8 @@ jobs:
183183
token: ${{ secrets.PERSONAL_TOKEN }}
184184
wait-for-completion-interval: 10s
185185
wait-for-completion-timeout: 120s
186+
display-workflow-run-url-interval: 10s
187+
display-workflow-run-url-timeout: 120s
186188
workflow-logs: print
187189
continue-on-error: true
188190
- uses: nick-invision/assert-action@v1

.github/workflows/echo-1.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Message Echo 1
22

3-
on:
3+
on:
4+
pull_request:
5+
branches: [ master ]
46
workflow_dispatch:
57
inputs:
68
message:

.github/workflows/echo-2.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Message Echo 2
22

3-
on:
3+
on:
4+
pull_request:
5+
branches: [ master ]
46
workflow_dispatch:
57
inputs:
68
message:
@@ -13,4 +15,4 @@ jobs:
1315
runs-on: ubuntu-latest
1416
steps:
1517
- name: Echo message
16-
run: echo '${{ github.event.inputs.message }}'
18+
run: echo '${{ github.event.inputs.message }}'

.github/workflows/failing.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Failing
22

3-
on:
3+
on:
4+
pull_request:
5+
branches: [ master ]
46
workflow_dispatch:
57

68
jobs:

.github/workflows/long-running.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Long running
22

3-
on:
3+
on:
4+
pull_request:
5+
branches: [ master ]
46
workflow_dispatch:
57

68
jobs:

.github/workflows/named-run.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Named run
22
run-name: ${{ inputs.run-name }}
33

44
on:
5+
pull_request:
6+
branches: [ master ]
57
workflow_dispatch:
68
inputs:
79
run-name:

.github/workflows/retrieve-logs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Retrieve logs
22

3-
on:
3+
on:
4+
pull_request:
5+
branches: [ master ]
46
workflow_dispatch:
57

68
jobs:
@@ -13,14 +15,14 @@ jobs:
1315
do
1416
echo "Hello $i"
1517
sleep 0.1
16-
done
17-
18+
done
19+
1820
timeout:
1921
runs-on: ubuntu-latest
2022
steps:
2123
- name: Sleep
2224
run: sleep 1200s
23-
25+
2426
more-real-example:
2527
runs-on: ubuntu-latest
2628
steps:

.github/workflows/timeout.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Timeout
22

3-
on:
3+
on:
4+
pull_request:
5+
branches: [ master ]
46
workflow_dispatch:
57

68
jobs:

0 commit comments

Comments
 (0)