Skip to content

Commit fd7732e

Browse files
committedDec 5, 2020
Initial commit
0 parents  commit fd7732e

File tree

99 files changed

+1506
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+1506
-0
lines changed
 

‎.github/workflows/graphs.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This file was generated by upptime/uptime-monitor@v1.22.11
2+
#
3+
# ===============================
4+
# Do not edit this file directly!
5+
# ===============================
6+
#
7+
# Your changes will be overwritten when the template updates (daily)
8+
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
9+
10+
name: Graphs CI
11+
on:
12+
schedule:
13+
- cron: "0 0 * * *"
14+
repository_dispatch:
15+
types: [graphs]
16+
workflow_dispatch:
17+
jobs:
18+
release:
19+
name: Generate graphs
20+
runs-on: ubuntu-18.04
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v2.3.3
24+
with:
25+
ref: ${{ github.head_ref }}
26+
token: ${{ secrets.GH_PAT }}
27+
- name: Generate graphs
28+
uses: upptime/uptime-monitor@v1.22.11
29+
with:
30+
command: "graphs"
31+
env:
32+
GH_PAT: ${{ secrets.GH_PAT }}

‎.github/workflows/response-time.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# This file was generated by upptime/uptime-monitor@v1.22.11
2+
#
3+
# ===============================
4+
# Do not edit this file directly!
5+
# ===============================
6+
#
7+
# Your changes will be overwritten when the template updates (daily)
8+
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
9+
10+
name: Response Time CI
11+
on:
12+
schedule:
13+
- cron: "0 23 * * *"
14+
repository_dispatch:
15+
types: [response_time]
16+
workflow_dispatch:
17+
jobs:
18+
release:
19+
name: Check status
20+
runs-on: ubuntu-18.04
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v2.3.3
24+
with:
25+
ref: ${{ github.head_ref }}
26+
token: ${{ secrets.GH_PAT }}
27+
- name: Update response time
28+
uses: upptime/uptime-monitor@v1.22.11
29+
with:
30+
command: "response-time"
31+
env:
32+
GH_PAT: ${{ secrets.GH_PAT }}
33+
SECRETS_CONTEXT: ${{ toJson(secrets) }}

0 commit comments

Comments
 (0)
Please sign in to comment.