This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
Export timetracking statistics #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Export timetracking statistics | |
on: | |
schedule: | |
- cron: '0 23 * * 2' | |
workflow_dispatch: | |
jobs: | |
generate: | |
runs-on: [self-hosted] | |
permissions: | |
pull-requests: write | |
contents: write | |
environment: timetracking-prod | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Checkout new branch | |
run: | | |
git checkout -b actions/timetracking-${{ github.run_id }} | |
git push --set-upstream origin actions/timetracking-${{ github.run_id }} | |
- name: Fetch the current timetracking data | |
run: cd docs/project/timetracking && ./get_data.sh | |
env: | |
KIMAI_API_TOKEN: ${{ secrets.KIMAI_API_TOKEN }} | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pandas numpy matplotlib | |
- name: Generate the desired charts | |
run: cd docs/project/timetracking && python generate_charts.py | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
- name: Push changes | |
run: git push | |
- name: 'Checkout the new branch' | |
uses: actions/checkout@v4 | |
with: | |
ref: 'actions/new-timetracking-data' | |
- name: 'Create a new Pull Request' | |
run: gh pr create -a benedictweis -B main -H "actions/timetracking-${{ github.run_id }}" --title "Update timetracking data" --body "Automated PR" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ISSUE: ${{ github.event.issue.html_url }} |