File tree Expand file tree Collapse file tree 2 files changed +26
-3
lines changed Expand file tree Collapse file tree 2 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,22 @@ name: Update Docker Hub Description
2
2
on :
3
3
workflow_dispatch :
4
4
push :
5
- branches : main
6
5
paths :
7
6
- README.md
8
7
- .github/workflows/dockerhub-description.yml
8
+ branches :
9
+ - main
10
+
9
11
jobs :
10
12
dockerhub-description :
11
- name : Update Docker Hub Description
13
+ name : Docker Hub Description
12
14
runs-on : ubuntu-latest
13
15
steps :
14
16
- name : Checkout
15
17
uses : actions/checkout@v4
16
18
17
19
- name : Docker Hub Description
18
- uses : peter-evans/dockerhub-description@v4
20
+ uses : peter-evans/dockerhub-description@v3
19
21
with :
20
22
username : ${{ secrets.DOCKER_HUB_USERNAME }}
21
23
password : ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : Keepalive Workflow
2
+ on :
3
+ schedule :
4
+ - cron : " 0 0 * * *"
5
+ jobs :
6
+ main-job :
7
+ name : Main Job
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v4
11
+ # - step1
12
+ # - step 2
13
+ # - Step N
14
+ keepalive-job :
15
+ name : Keepalive Workflow
16
+ runs-on : ubuntu-latest
17
+ permissions :
18
+ actions : write
19
+ steps :
20
+ - uses : actions/checkout@v4
21
+ - uses : gautamkrishnar/keepalive-workflow@v2
You can’t perform that action at this time.
0 commit comments