Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 491 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 491 Bytes

Ping URL JavaScript action

This action pings required URL by using Node.js https module.

Inputs

url

Required The URL you need this action to ping.

Example usage

on:
  schedule:
    - cron: '*/5 * * * *' # will run every 5 minutes

jobs:
  ping_url:
    runs-on: ubuntu-latest
    name: Ping URL
    steps:
      - name: Check the URL
        id: ping
        uses: soul-wish/ping-url-javascript-action@v1.1
        with:
          url: 'https://google.com'