Initial commit

This commit is contained in:
Kavin
2022-11-11 23:27:45 +00:00
committed by GitHub
commit 9f0c8696d4
85 changed files with 1582 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
# This file was generated by upptime/uptime-monitor@v1.28.0
#
# ===============================
# Do not edit this file directly!
# ===============================
#
# Your changes will be overwritten when the template updates (daily)
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
name: Graphs CI
on:
schedule:
- cron: "0 0 * * *"
repository_dispatch:
types: [graphs]
workflow_dispatch:
jobs:
release:
name: Generate graphs
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
- name: Generate graphs
uses: upptime/uptime-monitor@v1.28.0
with:
command: "graphs"
env:
GH_PAT: ${{ secrets.GH_PAT }}
+33
View File
@@ -0,0 +1,33 @@
# This file was generated by upptime/uptime-monitor@v1.28.0
#
# ===============================
# Do not edit this file directly!
# ===============================
#
# Your changes will be overwritten when the template updates (daily)
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
name: Response Time CI
on:
schedule:
- cron: "0 23 * * *"
repository_dispatch:
types: [response_time]
workflow_dispatch:
jobs:
release:
name: Check status
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
- name: Update response time
uses: upptime/uptime-monitor@v1.28.0
with:
command: "response-time"
env:
GH_PAT: ${{ secrets.GH_PAT }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}
+64
View File
@@ -0,0 +1,64 @@
# This file was generated by upptime/uptime-monitor@v1.28.0
#
# ===============================
# Do not edit this file directly!
# ===============================
#
# Your changes will be overwritten when the template updates (daily)
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
name: Setup CI
on:
push:
paths:
- ".upptimerc.yml"
repository_dispatch:
types: [setup]
workflow_dispatch:
jobs:
release:
name: Setup Upptime
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
- name: Update template
uses: upptime/uptime-monitor@v1.28.0
with:
command: "update-template"
env:
GH_PAT: ${{ secrets.GH_PAT }}
- name: Update response time
uses: upptime/uptime-monitor@v1.28.0
with:
command: "response-time"
env:
GH_PAT: ${{ secrets.GH_PAT }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}
- name: Update summary in README
uses: upptime/uptime-monitor@v1.28.0
with:
command: "readme"
env:
GH_PAT: ${{ secrets.GH_PAT }}
- name: Generate graphs
uses: benc-uk/workflow-dispatch@v1
with:
workflow: Graphs CI
token: ${{ secrets.GH_PAT }}
- name: Generate site
uses: upptime/uptime-monitor@v1.28.0
with:
command: "site"
env:
GH_PAT: ${{ secrets.GH_PAT }}
- uses: peaceiris/actions-gh-pages@v3.7.3
name: GitHub Pages Deploy
with:
github_token: ${{ secrets.GH_PAT }}
publish_dir: "site/status-page/__sapper__/export/"
user_name: "Upptime Bot"
user_email: "73812536+upptime-bot@users.noreply.github.com"
+40
View File
@@ -0,0 +1,40 @@
# This file was generated by upptime/uptime-monitor@v1.28.0
#
# ===============================
# Do not edit this file directly!
# ===============================
#
# Your changes will be overwritten when the template updates (daily)
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
name: Static Site CI
on:
schedule:
- cron: "0 1 * * *"
repository_dispatch:
types: [static_site]
workflow_dispatch:
jobs:
release:
name: Build and deploy site
runs-on: ubuntu-20.04
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
- name: Generate site
uses: upptime/uptime-monitor@v1.28.0
with:
command: "site"
env:
GH_PAT: ${{ secrets.GH_PAT }}
- uses: peaceiris/actions-gh-pages@v3.7.3
name: GitHub Pages Deploy
with:
github_token: ${{ secrets.GH_PAT }}
publish_dir: "site/status-page/__sapper__/export/"
user_name: "Upptime Bot"
user_email: "73812536+upptime-bot@users.noreply.github.com"
+32
View File
@@ -0,0 +1,32 @@
# This file was generated by upptime/uptime-monitor@v1.28.0
#
# ===============================
# Do not edit this file directly!
# ===============================
#
# Your changes will be overwritten when the template updates (daily)
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
name: Summary CI
on:
schedule:
- cron: "0 0 * * *"
repository_dispatch:
types: [summary]
workflow_dispatch:
jobs:
release:
name: Generate README
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
- name: Update summary in README
uses: upptime/uptime-monitor@v1.28.0
with:
command: "readme"
env:
GH_PAT: ${{ secrets.GH_PAT }}
+32
View File
@@ -0,0 +1,32 @@
# This file was generated by upptime/uptime-monitor@v1.28.0
#
# ===============================
# Do not edit this file directly!
# ===============================
#
# Your changes will be overwritten when the template updates (daily)
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
name: Update Template CI
on:
schedule:
- cron: "0 0 * * *"
repository_dispatch:
types: [update_template]
workflow_dispatch:
jobs:
release:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
- name: Update template
uses: upptime/uptime-monitor@master
with:
command: "update-template"
env:
GH_PAT: ${{ secrets.GH_PAT }}
+30
View File
@@ -0,0 +1,30 @@
# This file was generated by upptime/uptime-monitor@v1.28.0
#
# ===============================
# Do not edit this file directly!
# ===============================
#
# Your changes will be overwritten when the template updates (daily)
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
name: Updates CI
on:
schedule:
- cron: "0 3 * * *"
repository_dispatch:
types: [updates]
workflow_dispatch:
jobs:
release:
name: Deploy updates
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
- name: Update code
uses: upptime/updates@master
env:
GH_PAT: ${{ secrets.GH_PAT }}
+33
View File
@@ -0,0 +1,33 @@
# This file was generated by upptime/uptime-monitor@v1.28.0
#
# ===============================
# Do not edit this file directly!
# ===============================
#
# Your changes will be overwritten when the template updates (daily)
# Instead, change your .upptimerc.yml configuration: https://upptime.js.org/docs
name: Uptime CI
on:
schedule:
- cron: "*/5 * * * *"
repository_dispatch:
types: [uptime]
workflow_dispatch:
jobs:
release:
name: Check status
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
- name: Check endpoint status
uses: upptime/uptime-monitor@v1.28.0
with:
command: "update"
env:
GH_PAT: ${{ secrets.GH_PAT }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}