File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ We currently support:
11
11
- ` pull_request `
12
12
- ` release `
13
13
- ` push ` (tags, commits)
14
+ - ` schedule `
14
15
15
16
## Messages
16
17
@@ -58,6 +59,10 @@ All event messages will have these elements:
58
59
1 . Commit Hash - Also a link showing combined changes of all commits for the push
59
60
2 . Head Commit name - Name of last commit in the batch (can push multiple commits). Also a link to that commit.
60
61
62
+ ### Schedule
63
+
64
+ ![ Schedule] ( https://user-images.githubusercontent.com/5962998/100387966-baad0800-2fff-11eb-8733-56c4400286fa.png )
65
+
61
66
## Usage
62
67
63
68
You can use this action after any other action, however I recommend you put it as the last one. Here is an example setup of this action for a pull request:
Original file line number Diff line number Diff line change @@ -12839,6 +12839,11 @@ const getMessage = () => {
12839
12839
return `Workflow <${ runUrl } |${ process . env . GITHUB_WORKFLOW } > (<${ github . context . payload . compare } |${ commitId } >) for Commit <${ headCommit . url } | ${ headCommit . title } >` ;
12840
12840
}
12841
12841
12842
+ case 'schedule' :
12843
+ {
12844
+ return `Scheduled Workflow <${ runUrl } |${ process . env . GITHUB_WORKFLOW } >` ;
12845
+ }
12846
+
12842
12847
default :
12843
12848
return null ;
12844
12849
}
Original file line number Diff line number Diff line change @@ -83,6 +83,10 @@ const getMessage = () => {
83
83
return `Workflow <${ runUrl } |${ process . env . GITHUB_WORKFLOW } > (<${ context . payload . compare } |${ commitId } >) for Commit <${ headCommit . url } | ${ headCommit . title } >` ;
84
84
}
85
85
86
+ case 'schedule' : {
87
+ return `Scheduled Workflow <${ runUrl } |${ process . env . GITHUB_WORKFLOW } >` ;
88
+ }
89
+
86
90
default :
87
91
return null ;
88
92
}
You can’t perform that action at this time.
0 commit comments