forked from rahul-jha98/github-stats-transparent
-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (46 loc) · 1.83 KB
/
main.yml
File metadata and controls
53 lines (46 loc) · 1.83 KB
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
43
44
45
46
47
48
49
50
51
52
53
# This is a basic workflow to help you get started with Actions
name: Generate Stats Images
# Controls when the action will run. Triggers the workflow on push events
on:
push:
branches: [ main ]
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in
# parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Sequence of tasks that will be executed as part of the job
steps:
# Checks-out repository under $GITHUB_WORKSPACE, so the job can access it
- uses: actions/checkout@v6
# Set up UV to manage Python versions
- name: Install uv and set python version
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
python-version: '3.12'
# Generate all statistics images
- name: Generate images
run: uv run generate_images.py
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
EXCLUDED: ${{ secrets.EXCLUDED }}
EXCLUDED_LANGS: ${{ secrets.EXCLUDED_LANGS }}
COUNT_STATS_FROM_FORKS: ${{ secrets.COUNT_STATS_FROM_FORKS }}
# Commits all changed files to the repository
- name: Commit to the output branch of repo
run: |
git config --global user.name "github-stats[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m 'temp commit' || echo
git checkout output 2>/dev/null || git checkout --orphan output && git rm -rf . && git checkout main -- generated/
# "echo" returns true so the build succeeds, even if no changed files
git commit -m 'Update generated files' || echo
git push origin output -f