Skip to content
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.

Latest commit

History

History
32 lines (30 loc) 路 833 Bytes

github.md

File metadata and controls

32 lines (30 loc) 路 833 Bytes

GitHub

[
    {
        "method": "POST",
        "path": "/github-commit",
        "command": "echo New commit from $COMMIT_AUTHOR_NAME: $COMMIT_MESSAGE",
        "validate": [
            {
                "source": "header",
                "find": "X-Hub-Signature",
                "match": "hmac-sha1",
                "value": "supersecret"
            }
        ],
        "parseJson": [
            {
                "query": "payload.head_commit.message",
                "variable": "COMMIT_MESSAGE"
            },
            {
                "query": "payload.head_commit.author.name",
                "variable": "COMMIT_AUTHOR_NAME"
            }
        ]
    }
]