mirror of
https://github.com/wahyd4/upptime.git
synced 2026-08-23 12:06:36 +10:00
23 lines
572 B
YAML
23 lines
572 B
YAML
name: Response Time CI
|
|
on:
|
|
schedule:
|
|
- cron: "0 23 * * *"
|
|
repository_dispatch:
|
|
types: [response_time]
|
|
workflow_dispatch:
|
|
jobs:
|
|
release:
|
|
name: Check status
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
- name: Update response time
|
|
uses: upptime/uptime-monitor@master
|
|
with:
|
|
command: "response-time"
|
|
env:
|
|
GH_PAT: ${{ secrets.GH_PAT }}
|
|
SECRET_SITE: ${{ secrets.SECRET_SITE }}
|
|
SLACK_APP_ACCESS_TOKEN: ${{ secrets.SLACK_APP_ACCESS_TOKEN }}
|