-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cloudevents-server): support new events for tibuild
Signed-off-by: wuhuizuo <[email protected]>
- Loading branch information
Showing
3 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
package tibuild | ||
|
||
const ( | ||
EventTypeDevbuildFakeGithubPush = "net.pingcap.tibuild.devbuild.push" // Fake GitHub push events in the development build. | ||
EventTypeDevbuildFakeGithubCreate = "net.pingcap.tibuild.devbuild.create" // Fake GitHub create events in the development build. | ||
EventTypeHotfixFakeGithubPush = "net.pingcap.tibuild.hotfix.push" // Fake GitHub push events in the hotfix build. | ||
EventTypeHotfixFakeGithubCreate = "net.pingcap.tibuild.hotfix.create" // Fake GitHub create events in the hotfix build. | ||
EventTypeDevbuildFakeGithubPush = "net.pingcap.tibuild.devbuild.push" // Fake GitHub push events in the development build. | ||
EventTypeDevbuildFakeGithubCreate = "net.pingcap.tibuild.devbuild.create" // Fake GitHub create events in the development build. | ||
EventTypeDevbuildFakeGithubPullRequest = "net.pingcap.tibuild.devbuild.pull_request" // Fake GitHub pull request events in the development build. | ||
EventTypeHotfixFakeGithubPush = "net.pingcap.tibuild.hotfix.push" // Fake GitHub push events in the hotfix build. | ||
EventTypeHotfixFakeGithubCreate = "net.pingcap.tibuild.hotfix.create" // Fake GitHub create events in the hotfix build. | ||
EventTypeHotfixFakeGithubPullRequest = "net.pingcap.tibuild.hotfix.pull_request" // Fake GitHub pull request events in the hotfix build. | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters