mirror of https://github.com/kha7iq/pingme
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
4 years ago
|
on: pull_request
|
||
|
|
||
|
env:
|
||
|
PUSHOVER_TOKEN: ${{ secrets.PUSHOVER_TOKEN }}
|
||
|
PUSHOVER_USER: ${{ secrets.PUSHOVER_USER }}
|
||
|
|
||
|
jobs:
|
||
|
lint-code:
|
||
|
runs-on: self-hosted
|
||
|
name: PingMe
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: golangci-lint
|
||
|
uses: golangci/golangci-lint-action@v2
|
||
|
with:
|
||
|
version: v1.29
|
||
|
|
||
|
- name: Notification for checks failure
|
||
|
uses: kha7iq/pingme-action@v1
|
||
|
if: failure()
|
||
|
env:
|
||
|
PUSHOVER_TITLE: '🟢 New Request: ${{ github.ref }}'
|
||
|
PUSHOVER_MESSAGE: 'Event is triggerd by ${{ github.event_name }} Checks ❌ ${{ job.status }}'
|
||
|
with:
|
||
|
service: pushover
|
||
|
|
||
|
- name: Notification for checks passing
|
||
|
uses: kha7iq/pingme-action@v1
|
||
|
if: success()
|
||
|
env:
|
||
|
PUSHOVER_TITLE: '🟢 New Request: ${{ github.ref }}'
|
||
|
PUSHOVER_MESSAGE: 'Event is triggerd by ${{ github.event_name }} Checks ✅ ${{ job.status }}'
|
||
|
with:
|
||
|
service: pushover
|