From 09b845657c27844aff9682710ee41cd002fe20f2 Mon Sep 17 00:00:00 2001 From: Tomas Jansson Date: Tue, 20 Aug 2019 09:38:19 +0200 Subject: [PATCH] Add readme --- github-deploystatus/README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 github-deploystatus/README.md diff --git a/github-deploystatus/README.md b/github-deploystatus/README.md new file mode 100644 index 0000000..6c0966f --- /dev/null +++ b/github-deploystatus/README.md @@ -0,0 +1,22 @@ +# github-deploystatus + +This action makes it easier to report back deploy status to github. + +## Usage + +``` +- name: Report success + uses: unacast/actions/github-status@v0.9.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + state: success + +- name: Report fail + uses: unacast/actions/github-status@v0.9.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + state: failure + if: failure() +```