add page build -> slack workflow

This commit is contained in:
Adam Bachman 2019-03-15 11:05:09 -04:00 committed by GitHub
parent 53c0da7099
commit a7cc27cc55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
.github/main.workflow vendored Normal file
View file

@ -0,0 +1,10 @@
workflow "New workflow" {
on = "page_build"
resolves = ["GitHub Action for Slack"]
}
action "GitHub Action for Slack" {
uses = "Ilshidur/action-slack@e820f544affdbb77c1dee6d3f752f7f2daf4a0b3"
secrets = ["SLACK_WEBHOOK"]
args = "The GitHub Page has been built by {{ EVENT_PAYLOAD.build.pusher.login }}"
}