File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,12 @@ check-dotnet:
114
114
115
115
# -----------------------------------------------------------------------------
116
116
117
+ test-gh-actions :
118
+ @if [ -z " $$ (command -v act)" ]; then echo " Requires act command installed" ; exit -1 ; fi
119
+ act workflow_dispatch -n -e ./test/test-gh-event.json
120
+
121
+ # -----------------------------------------------------------------------------
122
+
117
123
build-image :
118
124
docker build ${IMAGE_DIR} -f ${IMAGE_DOCKERFILE} \
119
125
-t ${DOCKERHUB_ORG} /${IMAGE} :latest \
Original file line number Diff line number Diff line change
1
+ {
2
+ "pull_request" : {
3
+ "head" : {
4
+ "ref" : " sample-head-ref" ,
5
+ "sha" : " 50524bcd2d8c8aeb5e0b21b0731cb945372e7792" ,
6
+ "user" : {
7
+ "login" : " sample-username"
8
+ }
9
+ },
10
+ "title" : " Sample title" ,
11
+ "base" : {
12
+ "ref" : " sample-base-ref"
13
+ }
14
+ },
15
+ "release" : {
16
+ "tag_name" : " v1.2.1"
17
+ }
18
+ }
You can’t perform that action at this time.
0 commit comments