-
Notifications
You must be signed in to change notification settings - Fork 1
27 lines (26 loc) · 816 Bytes
/
main.yml
File metadata and controls
27 lines (26 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
on:
workflow_dispatch: {}
schedule:
# Makes commit(s) at 9am daily
# Change to whatever cron expression you like
- cron: "0 9 * * *"
jobs:
lit-job:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
runs-on: ubuntu-latest
name: A job to get you lit
steps:
- uses: actions/checkout@v3
- name: make commits
# Uses GitHub action defined in https://github.com/FredaXin/gitlit
uses: FredaXin/gitlit@main
with:
# Defines the range of number of commits
# Change to your desierd lower and upper bound
lower-bound: 0
upper-bound: 6
# Change to your GitHub username
user-name: YourGithubUserName
# Change to your email used for GitHub account
user-email: YourEmail4Github