Skip to content

Commit

Permalink
chore: bump to 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmorano committed Oct 4, 2023
1 parent fdc6b02 commit 74e6dbc
Show file tree
Hide file tree
Showing 92 changed files with 188 additions and 352 deletions.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/maintainance-event.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Maintenance Event
about: Schedule a work window
title: "[Scheduled Maintenance] Site down for Maintenance"
labels: maintenance
assignees: ''

---

<!--
start: 2021-08-24T13:00:00.220Z
end: 2021-08-24T14:00:00.220Z
expectedDown: google, hacker-news
-->

**Additional context**
Who/what/when/where/why is this maintenance happening
10 changes: 5 additions & 5 deletions .github/workflows/graphs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was generated by upptime/uptime-monitor@v1.29.0
# This file was generated by upptime/uptime-monitor@v1.31.2
#
# ===============================
# Do not edit this file directly!
Expand All @@ -17,16 +17,16 @@ on:
jobs:
release:
name: Generate graphs
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Generate graphs
uses: upptime/uptime-monitor@v1.29.0
uses: upptime/uptime-monitor@v1.31.2
with:
command: "graphs"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
10 changes: 5 additions & 5 deletions .github/workflows/response-time.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was generated by upptime/uptime-monitor@v1.29.0
# This file was generated by upptime/uptime-monitor@v1.31.2
#
# ===============================
# Do not edit this file directly!
Expand All @@ -17,17 +17,17 @@ on:
jobs:
release:
name: Check status
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Update response time
uses: upptime/uptime-monitor@v1.29.0
uses: upptime/uptime-monitor@v1.31.2
with:
command: "response-time"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}
27 changes: 14 additions & 13 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was generated by upptime/uptime-monitor@v1.29.0
# This file was generated by upptime/uptime-monitor@v1.31.2
#
# ===============================
# Do not edit this file directly!
Expand All @@ -18,47 +18,48 @@ on:
jobs:
release:
name: Setup Upptime
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Update template
uses: upptime/uptime-monitor@v1.29.0
uses: upptime/uptime-monitor@v1.31.2
with:
command: "update-template"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
- name: Update response time
uses: upptime/uptime-monitor@v1.29.0
uses: upptime/uptime-monitor@v1.31.2
with:
command: "response-time"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}
- name: Update summary in README
uses: upptime/uptime-monitor@v1.29.0
uses: upptime/uptime-monitor@v1.31.2
with:
command: "readme"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
- name: Generate graphs
uses: benc-uk/workflow-dispatch@v1
with:
workflow: Graphs CI
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Generate site
uses: upptime/uptime-monitor@v1.29.0
uses: upptime/uptime-monitor@v1.31.2
with:
command: "site"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
- uses: peaceiris/actions-gh-pages@v3.7.3
name: GitHub Pages Deploy
with:
github_token: ${{ secrets.GH_PAT }}
github_token: ${{ secrets.GH_PAT || github.token }}
publish_dir: "site/status-page/__sapper__/export/"
force_orphan: "false"
user_name: "Upptime Bot"
user_email: "73812536+upptime-bot@users.noreply.github.com"
13 changes: 7 additions & 6 deletions .github/workflows/site.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was generated by upptime/uptime-monitor@v1.29.0
# This file was generated by upptime/uptime-monitor@v1.31.2
#
# ===============================
# Do not edit this file directly!
Expand All @@ -17,24 +17,25 @@ on:
jobs:
release:
name: Build and deploy site
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Generate site
uses: upptime/uptime-monitor@v1.29.0
uses: upptime/uptime-monitor@v1.31.2
with:
command: "site"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
- uses: peaceiris/actions-gh-pages@v3.7.3
name: GitHub Pages Deploy
with:
github_token: ${{ secrets.GH_PAT }}
github_token: ${{ secrets.GH_PAT || github.token }}
publish_dir: "site/status-page/__sapper__/export/"
force_orphan: "false"
user_name: "Upptime Bot"
user_email: "73812536+upptime-bot@users.noreply.github.com"
10 changes: 5 additions & 5 deletions .github/workflows/summary.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was generated by upptime/uptime-monitor@v1.29.0
# This file was generated by upptime/uptime-monitor@v1.31.2
#
# ===============================
# Do not edit this file directly!
Expand All @@ -17,16 +17,16 @@ on:
jobs:
release:
name: Generate README
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Update summary in README
uses: upptime/uptime-monitor@v1.29.0
uses: upptime/uptime-monitor@v1.31.2
with:
command: "readme"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
8 changes: 4 additions & 4 deletions .github/workflows/update-template.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was generated by upptime/uptime-monitor@v1.29.0
# This file was generated by upptime/uptime-monitor@v1.31.2
#
# ===============================
# Do not edit this file directly!
Expand All @@ -17,16 +17,16 @@ on:
jobs:
release:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Update template
uses: upptime/uptime-monitor@master
with:
command: "update-template"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
8 changes: 4 additions & 4 deletions .github/workflows/updates.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was generated by upptime/uptime-monitor@v1.29.0
# This file was generated by upptime/uptime-monitor@v1.31.2
#
# ===============================
# Do not edit this file directly!
Expand All @@ -17,14 +17,14 @@ on:
jobs:
release:
name: Deploy updates
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Update code
uses: upptime/updates@master
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
10 changes: 5 additions & 5 deletions .github/workflows/uptime.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was generated by upptime/uptime-monitor@v1.29.0
# This file was generated by upptime/uptime-monitor@v1.31.2
#
# ===============================
# Do not edit this file directly!
Expand All @@ -17,17 +17,17 @@ on:
jobs:
release:
name: Check status
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_PAT }}
token: ${{ secrets.GH_PAT || github.token }}
- name: Check endpoint status
uses: upptime/uptime-monitor@v1.29.0
uses: upptime/uptime-monitor@v1.31.2
with:
command: "update"
env:
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: ${{ secrets.GH_PAT || github.token }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}
43 changes: 31 additions & 12 deletions .upptimerc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,50 @@ sites:
- name: voting.summit.cardano.org
url: https://voting.summit.cardano.org/
maxResponseTime: 2000
__dangerous__body_down_if_text_missing: 'Cardano Ballot Web Application'
__dangerous__body_down_if_text_missing: 'Cardano Summit 2023 Voting Application'
expectedStatusCodes:
- 200
- name: voter-service-AWARD-categories
url: https://voting.summit.cardano.org/api/reference/categories/M4ep/AWARD
- name: event-api
url: https://follower-api.voting.summit.cardano.org/api/reference/event/CARDANO_SUMMIT_AWARDS_2023
maxResponseTime: 2000
__dangerous__body_down_if_text_missing: '"id": "CARDANO_SUMMIT_AWARDS_2023"'
expectedStatusCodes:
- 200
- name: voter-service-SPEAKERS-categories
url: https://voting.summit.cardano.org/api/reference/categories/M4ep/SPEAKER
- name: user-verification-api
url: https://user-verification.voting.summit.cardano.org/api/sms/user-verification/start-verification
maxResponseTime: 2000
__dangerous__body_down_if_text_missing: '"categoryType":"SPEAKER"'
expectedStatusCodes:
- 405
- name: blockchain-follower-api
url: https://follower-api.voting.summit.cardano.org/api/blockchain/tip
maxResponseTime: 2000
__dangerous__body_down_if_text_missing: 'absoluteSlot'
expectedStatusCodes:
- 200
- name: voter-service-cast-vote
url: https://voting.summit.cardano.org/api/voting/cast-vote
- name: login-api
url: http://api.voting.summit.cardano.org/api/auth/login
maxResponseTime: 2000
__dangerous__body_down_if_text_missing: 'Full authentication is required to access this resource'
expectedStatusCodes:
- 401
- name: voter-service-get-captcha
url: https://voting.summit.cardano.org/captcha
- name: cast-vote-api
url: http://api.voting.summit.cardano.org/api/vote/cast
maxResponseTime: 2000
__dangerous__body_down_if_text_missing: 'svg'
__dangerous__body_down_if_text_missing: 'Full authentication is required to access this resource'
expectedStatusCodes:
- 200
- 401
- name: get-votes-api
url: http://api.voting.summit.cardano.org/api/vote/votes/CARDANO_SUMMIT_AWARDS_2023
maxResponseTime: 2000
__dangerous__body_down_if_text_missing: 'Full authentication is required to access this resource'
expectedStatusCodes:
- 401
- name: get-vote-receipt-api
url: http://api.voting.summit.cardano.org/api/vote/receipt/CARDANO_SUMMIT_AWARDS_2023/AMBASSADOR
maxResponseTime: 2000
__dangerous__body_down_if_text_missing: 'Full authentication is required to access this resource'
expectedStatusCodes:
- 401

status-website:
# Add your custom domain name, or remove the `cname` line if you don't have a domain
Expand Down
Loading

0 comments on commit 74e6dbc

Please sign in to comment.