Commit 42003e7 1 parent 866a329 commit 42003e7 Copy full SHA for 42003e7
File tree 4 files changed +62
-0
lines changed
4 files changed +62
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ # Workflow to test check_run event
3
+ name : On check_run dummy
4
+ on :
5
+ check_run :
6
+ types : [completed]
7
+
8
+ permissions :
9
+ contents : read
10
+
11
+ jobs :
12
+ on-push-dummy :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Dummy step
16
+ run : echo "This is a dummy step"
Original file line number Diff line number Diff line change
1
+ ---
2
+ # Workflow to test check_suite event
3
+ name : On check_suite dummy
4
+ on :
5
+ check_suite :
6
+ types : [completed]
7
+
8
+ permissions :
9
+ contents : read
10
+
11
+ jobs :
12
+ on-push-dummy :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Dummy step
16
+ run : echo "This is a dummy step"
Original file line number Diff line number Diff line change
1
+ ---
2
+ # Workflow to test push event
3
+ name : On push dummy
4
+ on :
5
+ push : {}
6
+
7
+ permissions :
8
+ contents : read
9
+
10
+ jobs :
11
+ on-push-dummy :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Dummy step
15
+ run : echo "This is a dummy step"
Original file line number Diff line number Diff line change
1
+ ---
2
+ # Workflow to test status event
3
+ name : On status dummy
4
+ on :
5
+ status :
6
+
7
+ permissions :
8
+ contents : read
9
+
10
+ jobs :
11
+ on-push-dummy :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Dummy step
15
+ run : echo "This is a dummy step"
You can’t perform that action at this time.
0 commit comments