From 5937abe4354f3c962129a13affc77fcdd45724f3 Mon Sep 17 00:00:00 2001 From: eikendev Date: Tue, 31 Mar 2020 19:36:43 +0200 Subject: [PATCH] Add the action to this repository --- .github/workflows/main.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..1608a33 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,14 @@ +name: Gotify Notification +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Gotify Notification + uses: eikendev/action-gotify@master + env: + gotify_api_base: ${{ secrets.gotify_api_base }} + gotify_app_token: ${{ secrets.gotify_app_token }} + notification_title: 'Build Complete' + notification_message: 'Your build was completed.'