Skip to content

Commit b30aef4

Browse files
committed
no synced local './' with remote 'docker/'
1 parent 506cd0d commit b30aef4

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

.github/workflows/dockerhub-description.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,22 @@ name: Update Docker Hub Description
22
on:
33
workflow_dispatch:
44
push:
5-
branches: main
65
paths:
76
- README.md
87
- .github/workflows/dockerhub-description.yml
8+
branches:
9+
- main
10+
911
jobs:
1012
dockerhub-description:
11-
name: Update Docker Hub Description
13+
name: Docker Hub Description
1214
runs-on: ubuntu-latest
1315
steps:
1416
- name: Checkout
1517
uses: actions/checkout@v4
1618

1719
- name: Docker Hub Description
18-
uses: peter-evans/dockerhub-description@v4
20+
uses: peter-evans/dockerhub-description@v3
1921
with:
2022
username: ${{ secrets.DOCKER_HUB_USERNAME }}
2123
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

.github/workflows/keepalive.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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

0 commit comments

Comments
 (0)