Skip to content

Commit 7308a6f

Browse files
committed
add sleep workflow to pause execution for 100 seconds
1 parent e8975d1 commit 7308a6f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/sleep.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Sleep
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
7+
jobs:
8+
print-env:
9+
runs-on: self-hosted
10+
steps:
11+
- name: Print all environment variables
12+
run: sleep 100
13+

0 commit comments

Comments
 (0)