-
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 1.15 KB
/
unreleased_commits.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Unreleased Commits
on:
workflow_dispatch:
# push:
# branches:
# - main
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '20 */4 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install PyGithub
pip install pyyaml
pip install timeago
- name: Run script and commit changes
run: |
python _generators/unreleased_commits.py
echo "Setting up git credentials..."
git remote set-url origin https://x-access-token:"$GITHUB_TOKEN"@github.com/"$GITHUB_REPOSITORY".git
git config --global user.email "[email protected]"
git config --global user.name "actions"
echo "Git credentials configured."
git checkout main
git add .
git commit -m "Automatic update of data" && git push --set-upstream origin main || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}