You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
431 B
21 lines
431 B
name: Keepalive Workflow
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
jobs:
|
|
main-job:
|
|
name: Main Job
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
# - step1
|
|
# - step 2
|
|
# - Step N
|
|
keepalive-job:
|
|
name: Keepalive Workflow
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: gautamkrishnar/keepalive-workflow@v2
|
|
|