Skip to content

Daily issue export update #309

Daily issue export update

Daily issue export update #309

name: Daily issue export update
on:
schedule:
# Run daily at 5:00 AM UTC
- cron: '0 5 * * *'
workflow_dispatch: # Allow manual triggering
jobs:
update-issue-export:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make init
- name: Generate issue exports
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
make issue-tracking-data
- name: Generate declarative progress
run: |
make declarative-progress
- name: Commit and push changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
make commit-issue-tracking