GitHub Action for ping website via XML-RPC.
NOTHING
PING_TITLE
: required,Your website, blog titlePING_URL
: required, URL want to pingRPC_ENDPOINT
: optinal, RPC Endpoint, default ishttp://rpc.pingomatic.com/
main.workflow
workflow "Deploy to GitHub Pages" {
on = "push"
resolves = ["rpc-ping"]
}
action "hugo-deploy-gh-pages" {
uses = "khanhicetea/gh-actions-hugo-deploy-gh-pages@master"
secrets = [
"GIT_DEPLOY_KEY",
]
}
action "rpc-ping" {
uses = "khanhicetea/gh-actions-rpc-ping@master"
env = {
PING_TITLE = "KhanhIceTea B(rain)-log"
PING_URL = "https://khanhicetea.com"
}
needs = ["hugo-deploy-gh-pages"]
}
Copyright (c) 2019
Licensed under the MIT License.