All Projects → srt32 → uptime

srt32 / uptime

Licence: MIT license
GitHub Action to check the status of endpoints

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to uptime

netcheck
A shell script to check and log when your internet connection goes down.
Stars: ✭ 138 (+360%)
Mutual labels:  ping, uptime
upmail
Email notification hook for https://github.com/sourcegraph/checkup.
Stars: ✭ 62 (+106.67%)
Mutual labels:  ping, uptime
discord-uptime
Discord bot to monitor uptime of services using ping and http requests
Stars: ✭ 46 (+53.33%)
Mutual labels:  ping, uptime
uptime-bot
A Discord uptime bot which keeps repl.it links up forever!!
Stars: ✭ 14 (-53.33%)
Mutual labels:  ping, uptime
danger-action
Execute danger action for GitHub Actions.
Stars: ✭ 24 (-20%)
Mutual labels:  actions
standard-action
Github Action to lint with `standard` and friends
Stars: ✭ 15 (-50%)
Mutual labels:  actions
clojure-dependency-update-action
A simple GitHub Actions job to create Pull Requests for outdated dependencies in clojure projects
Stars: ✭ 37 (+23.33%)
Mutual labels:  actions
ICMP-server
simple web app that use icmp protocol to check some devices if there are up or not
Stars: ✭ 16 (-46.67%)
Mutual labels:  ping
action-release-label
🏷️ GitHub Action to output a semver update level from a pull request release label
Stars: ✭ 41 (+36.67%)
Mutual labels:  actions
verify-changed-files
Github action to verify file changes that occur during the workflow execution.
Stars: ✭ 62 (+106.67%)
Mutual labels:  actions
add-an-issue-reference-action
A GitHub Action for adding a related issue reference to a pull request.
Stars: ✭ 19 (-36.67%)
Mutual labels:  actions
k8s-create-secret
GitHub Action to create Kubernetes cluster secrets
Stars: ✭ 24 (-20%)
Mutual labels:  actions
html5validator-action
GitHub Action that checks HTML5 syntax.
Stars: ✭ 27 (-10%)
Mutual labels:  actions
pingo
Ping library for Golang with multi-host support
Stars: ✭ 36 (+20%)
Mutual labels:  ping
spinnaker-pipeline-trigger
Pipeline trigger for Spinnaker utilizing SNS
Stars: ✭ 15 (-50%)
Mutual labels:  actions
setup-sp
This action sets-up, cache and adds sourcemod scripting directory to the path
Stars: ✭ 30 (+0%)
Mutual labels:  actions
deployer-php-action
Deploy PHP projects using Deployer from Github Actions
Stars: ✭ 57 (+90%)
Mutual labels:  actions
action-add-labels
🏷️ GitHub Action to add labels
Stars: ✭ 65 (+116.67%)
Mutual labels:  actions
StatusPage
UptimeRobot 状态页
Stars: ✭ 58 (+93.33%)
Mutual labels:  uptime
pong
Basic uptime monitoring system, with email alerts and/or push notifications
Stars: ✭ 94 (+213.33%)
Mutual labels:  uptime

uptime

GitHub Action to check the status of endpoints. This action can be used to check a website is live after a deploy or on an ongoing basis via cron.

Inputs

url-to-hit

Required The url to hit

expected-statuses

Comma separated list of statuses that are okay. Defaults to "200"

Outputs

status

The status we got.

Example usage

  
on:
  schedule:
    - cron: '*/5 * * * *'

jobs:
  ping_site:
    runs-on: ubuntu-latest
    name: Ping the site
    steps:
    - name: Check the site
      id: hello
      uses: srt32/uptime@master
      with:
        url-to-hit: "https://example.com"
        expected-statuses: "200,301"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].