-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from SamYuan1990/releaseAuto
add auto issue create for every 3 months
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: "Reminder" | ||
on: | ||
# works for mannual, in case of github agent updated. | ||
# we can run mannually to see if it can be fixed by update version of | ||
# - kubectl | ||
# - k8s cluster provider's | ||
schedule: [{cron: "0 0 1 */3 *"}] | ||
|
||
jobs: | ||
versionBumpUpReminder: | ||
name: versionBumpUpReminder | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create new issue | ||
uses: imjohnbo/issue-bot@v3 | ||
with: | ||
title: AutoBumpUpVersionReminder | ||
body: |- | ||
:wave: Hi maintainers, please remind to bump version for kind, microshift or any dependency for github action! | ||
pinned: true |