Skip to content

Commit d60674e

Browse files
authored
Initial commit
0 parents  commit d60674e

8 files changed

+262
-0
lines changed

โ€Ž.github/FUNDING.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: mazipan
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: ['https://mazipan.space/support']

โ€Ž.github/workflows/autocommit.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: Auto commit
2+
3+
on:
4+
5+
push:
6+
branches:
7+
- master
8+
9+
schedule:
10+
- cron: "0 7,9,11 * * 1,3" # See https://crontab.guru/#0_7,9,11_*_*_1,3
11+
12+
jobs:
13+
auto_commit:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: DEBUG
17+
run: echo "::debug::Ref = ${{github.ref}}"
18+
- uses: actions/checkout@v3
19+
with:
20+
persist-credentials: false
21+
fetch-depth: 0
22+
23+
- name: Modify last update
24+
run: |
25+
d=`date '+%Y-%m-%dT%H:%M:%SZ'`
26+
echo $d > LAST_UPDATED
27+
28+
- name: Commit changes
29+
run: |
30+
git config --local user.email "[email protected]"
31+
git config --local user.name "mazipan"
32+
git add -A
33+
34+
arr[0]="chore(bot): ๐Ÿ˜‚ auto commit"
35+
arr[1]="chore(bot): ๐Ÿ˜ฑ auto commit"
36+
arr[2]="chore(bot): ๐Ÿ‘ฟ auto commit"
37+
arr[3]="chore(bot): ๐Ÿ’ฉ auto commit"
38+
arr[4]="chore(bot): ๐Ÿ™ auto commit"
39+
arr[5]="chore(bot): ๐Ÿ™ˆ auto commit"
40+
arr[6]="chore(bot): ๐Ÿ auto commit"
41+
arr[7]="chore(bot): ๐Ÿค– auto commit"
42+
arr[8]="chore(bot): ๐ŸŸฉ auto commit"
43+
arr[9]="chore(bot): ๐Ÿ‘ป auto commit"
44+
45+
rand=$[$RANDOM % ${#arr[@]}]
46+
47+
git commit -m "${arr[$rand]}"
48+
49+
- name: GitHub Push
50+
uses: ad-m/[email protected]
51+
with:
52+
directory: "."
53+
github_token: ${{ secrets.GITHUB_TOKEN }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## ๐Ÿ‘‹ Thank you for the PR!
2+
3+
### Description:
4+
5+
Add short description
6+
7+
### Issue Reference
8+
9+
Add issue reference
10+
11+
### Screenshoot
12+
13+
Add screenshoot if you change the UI
14+
15+
### Minimum Support
16+
17+
- [ ] Click ๐ŸŒŸ button to this repo
18+
- [ ] Follow the Author
19+
20+
### Consider to Support
21+
22+
- ๐Ÿ‘‰ ๐Ÿ‡ฎ๐Ÿ‡ฉ [Trakteer](https://trakteer.id/mazipan?utm_source=github)
23+
- ๐Ÿ‘‰ ๐ŸŒ [BuyMeACoffe](https://www.buymeacoffee.com/mazipan?utm_source=github)
24+
- ๐Ÿ‘‰ ๐ŸŒ [Paypal](https://www.paypal.me/mazipan?utm_source=github)
25+
- ๐Ÿ‘‰ ๐ŸŒ [Ko-Fi](https://ko-fi.com/mazipan)

โ€Ž.gitignore

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
9+
# Diagnostic reports (https://nodejs.org/api/report.html)
10+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11+
12+
# Runtime data
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
18+
# Directory for instrumented libs generated by jscoverage/JSCover
19+
lib-cov
20+
21+
# Coverage directory used by tools like istanbul
22+
coverage
23+
*.lcov
24+
25+
# nyc test coverage
26+
.nyc_output
27+
28+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29+
.grunt
30+
31+
# Bower dependency directory (https://bower.io/)
32+
bower_components
33+
34+
# node-waf configuration
35+
.lock-wscript
36+
37+
# Compiled binary addons (https://nodejs.org/api/addons.html)
38+
build/Release
39+
40+
# Dependency directories
41+
node_modules/
42+
jspm_packages/
43+
44+
# TypeScript v1 declaration files
45+
typings/
46+
47+
# TypeScript cache
48+
*.tsbuildinfo
49+
50+
# Optional npm cache directory
51+
.npm
52+
53+
# Optional eslint cache
54+
.eslintcache
55+
56+
# Microbundle cache
57+
.rpt2_cache/
58+
.rts2_cache_cjs/
59+
.rts2_cache_es/
60+
.rts2_cache_umd/
61+
62+
# Optional REPL history
63+
.node_repl_history
64+
65+
# Output of 'npm pack'
66+
*.tgz
67+
68+
# Yarn Integrity file
69+
.yarn-integrity
70+
71+
# dotenv environment variables file
72+
.env
73+
.env.test
74+
75+
# parcel-bundler cache (https://parceljs.org/)
76+
.cache
77+
78+
# Next.js build output
79+
.next
80+
81+
# Nuxt.js build / generate output
82+
.nuxt
83+
dist
84+
85+
# Gatsby files
86+
.cache/
87+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
88+
# https://nextjs.org/blog/next-9-1#public-directory-support
89+
# public
90+
91+
# vuepress build output
92+
.vuepress/dist
93+
94+
# Serverless directories
95+
.serverless/
96+
97+
# FuseBox cache
98+
.fusebox/
99+
100+
# DynamoDB Local files
101+
.dynamodb/
102+
103+
# TernJS port file
104+
.tern-port

โ€ŽLAST_UPDATED

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2024-05-31T03:53:23Z

โ€ŽLICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Irfan Maulana
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

โ€ŽREADME.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# auto-commit
2+
3+
๐ŸŒณ Making green your Github stats, powered by [Github Actions](https://github.com/features/actions)
4+
5+
[![Auto commit](https://github.com/mazipan/auto-commit/workflows/Auto%20commit/badge.svg)](https://github.com/mazipan/auto-commit/actions?query=workflow%3A%22Auto+commit%22)
6+
7+
![Mazipan's Github Stats](https://ghchart.rshah.org/mazipan)
8+
9+
## Make it your own
10+
11+
- Create your own repo with click "**Use this template**" button (โš ๏ธ forked repo will not work)
12+
13+
Or just do in the manual way:
14+
15+
- โœ… Create your own repo
16+
- โœ… Copy file `.github/workflows/autocommit.yml` and `LAST_UPDATED` to your repo
17+
- โœ… You have to configure your repository. Go to: **Settings** -> **Action** -> **General** -> **Workflow permissions** and choose **"Read and write permissions"**
18+
- โœ… Change the `email` and `name` information on file [autocommit.yml, line 29 and 30](https://github.com/mazipan/auto-commit/blob/master/.github/workflows/autocommit.yml#L29)
19+
- โœ… Change the scheduling time on file [autocommit.yml, line 10](https://github.com/mazipan/auto-commit/blob/master/.github/workflows/autocommit.yml#L10). You can use [crontab.guru](https://crontab.guru/) if you are not familiar with the cron schedule string. For first time, you can try to run it in every hour with string `1 * * * *` .
20+
- โœ… Consider to support me, at least click the ๐ŸŒŸ button
21+
22+
## Article (in Bahasa Indonesia)
23+
24+
- https://mazipan.space/membuat-commit-otomatis-ke-github/
25+
26+
## Repo using this auto-commit
27+
28+
- You can add your repo here
29+
30+
31+
## Credits
32+
33+
- [Github Actions](https://github.com/features/actions)
34+
- [ad-m/github-push-action](https://github.com/ad-m/github-push-action)
35+
36+
## Consider to Support
37+
38+
- ๐Ÿ‘‰ ๐Ÿ‡ฎ๐Ÿ‡ฉ [Trakteer](https://trakteer.id/mazipan?utm_source=github)
39+
- ๐Ÿ‘‰ ๐ŸŒ [BuyMeACoffe](https://www.buymeacoffee.com/mazipan?utm_source=github)
40+
- ๐Ÿ‘‰ ๐ŸŒ [Paypal](https://www.paypal.me/mazipan?utm_source=github)
41+
- ๐Ÿ‘‰ ๐ŸŒ [Ko-Fi](https://ko-fi.com/mazipan)
42+
43+
---
44+
45+
ยฉ 2020 Crafted by Irfan Maulana
46+

โ€Žscreenshoot.png

33.8 KB
Loading

0 commit comments

Comments
ย (0)