Github Action with a cronjob trigger #386
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: Github Action with a cronjob trigger | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
cronjob-based-github-action: | |
name: Cronjob based github action | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - step1 | |
# - step 2 | |
# - step n, use it as the last step | |
- uses: gautamkrishnar/keepalive-workflow@v1 # using the workflow with default settings |