Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drl990114/auto-green
https://github.com/drl990114/auto-green
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/drl990114/auto-green
- Owner: drl990114
- License: mit
- Created: 2022-04-07T14:58:17.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-05-21T14:58:25.000Z (over 2 years ago)
- Last Synced: 2024-10-11T00:14:42.229Z (about 1 month ago)
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# auto-green
[![Build Status](https://github.com/justjavac/auto-green/workflows/ci/badge.svg?branch=master)](https://github.com/justjavac/auto-green/actions)
自动保持 GitHub 提交状态常绿。
> a commit a day keeps your girlfriend away.
## 原理
使用 GitHub Actions 的定时任务功能,每隔一段时间自动执行 `git commit`,提交信息为 "a commit a day keeps your girlfriend away",灵感来自知乎问题[在 GitHub 上保持 365 天全绿是怎样一种体验?](https://www.zhihu.com/question/34043434/answer/57826281)下某匿名用户的回答:
> 曾经保持了 200 多天全绿,但是冷落了女朋友,一直绿到现在。
有关 Github Action 的原理,可查看官方文档 [Github Action 简介](https://docs.github.com/cn/actions/learn-github-actions/introduction-to-github-actions)
## 使用
- 点右上角 **Use this template** 按钮复制本 GitHub 仓库,**:warning: 千万不要 Fork,因为 fork 项目的动态并不会让你变绿 :warning:**
- 修改 [ci.yml 文件的第 7、8 行](https://github.com/justjavac/auto-green/blob/master/.github/workflows/ci.yml#L7-L8) 去掉前面的 `#` 号
- 修改 [ci.yml 文件的第 19、20 行](https://github.com/justjavac/auto-green/blob/master/.github/workflows/ci.yml#L19-L20) 为自己的 GitHub 账号和昵称
- (可选) 你可以通过修改 [ci.yml 文件的第 8 行](https://github.com/justjavac/auto-green/blob/master/.github/workflows/ci.yml#L8)来调整频率计划任务语法有 5 个字段,中间用空格分隔,每个字段代表一个时间单位。
```plain
┌───────────── 分钟 (0 - 59)
│ ┌───────────── 小时 (0 - 23)
│ │ ┌───────────── 日 (1 - 31)
│ │ │ ┌───────────── 月 (1 - 12 或 JAN-DEC)
│ │ │ │ ┌───────────── 星期 (0 - 6 或 SUN-SAT)
│ │ │ │ │
│ │ │ │ │
│ │ │ │ │
* * * * *
```每个时间字段的含义:
|符号 | 描述 | 举例 |
| ----- | -----------| -------------------------------------------|
| `*` | 任意值 | `* * * * *` 每天每小时每分钟 |
| `,` | 值分隔符 | `1,3,4,7 * * * *` 每小时的 1 3 4 7 分钟 |
| `-` | 范围 | `1-6 * * * *` 每小时的 1-6 分钟 |
| `/` | 每 | `*/15 * * * *` 每隔 15 分钟 |**注**:由于 GitHub Actions 的限制,如果设置为 `* * * * *` 实际的执行频率为每 5 分执行一次。
## License
[auto-green](https://github.com/justjavac/auto-green) is released under the MIT License. See the bundled [LICENSE](./LICENSE) file for details.