Skip to content

Commit a966b1b

Browse files
authored
Merge pull request #45 from SamYuan1990/releaseAuto
add auto issue create for every 3 months
2 parents 8262537 + dda90dd commit a966b1b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/TagReminder.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Reminder"
2+
on:
3+
# works for mannual, in case of github agent updated.
4+
# we can run mannually to see if it can be fixed by update version of
5+
# - kubectl
6+
# - k8s cluster provider's
7+
schedule: [{cron: "0 0 1 */3 *"}]
8+
9+
jobs:
10+
versionBumpUpReminder:
11+
name: versionBumpUpReminder
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Create new issue
15+
uses: imjohnbo/issue-bot@v3
16+
with:
17+
title: AutoBumpUpVersionReminder
18+
body: |-
19+
:wave: Hi maintainers, please remind to bump version for kind, microshift or any dependency for github action!
20+
pinned: true

0 commit comments

Comments
 (0)