Trigger Probe of Deployed App on a CRON Schedule #246
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger Probe of Deployed App on a CRON Schedule | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
probe_deployed_app: | |
runs-on: ubuntu-latest | |
name: A job to probe deployed app | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Probe Deployed App Action Step | |
uses: ./probe-action # Uses an action in the probe-action directory | |
id: probe | |
keepalive-job: | |
name: Keepalive Workflow | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gautamkrishnar/[email protected] |