GitHub Action
awake-action
v1
Latest version
- Give this project a ⭐️
- Pull requests and issues are most welcome
At the root of your project, create the file/folders structure: .github/workflows/awake.yml
Paste the following lines into your awake.yml
file:
name: Awake Action
on:
schedule:
# every 45 minutes, the steps below are triggered
- cron: "45 * * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: main-awake
uses: devpolo/awake-action@v1
with:
url: "YOUR_URL_TO_AWAKE"
In case you don't want your uri to be public, follow the next steps:
Under your repository Settings
> Secrets
, click New repository secret
and add your SECRET_URI
.
The following awake.yml
file awakes two uri : a secret and a public one.
name: Awake Action
on:
schedule:
- cron: "45 * * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
# awake a secret uri
- name: secret-awake
uses: devpolo/awake-action@v1
with:
url: ${{ secrets.SECRET_URI }}
# awake another public uri
- name: awake-heroku-client
uses: devpolo/awake-action@v1
with:
url: "YOUR_HEROKU_URL"
# add as many uri as you want
# ...