Skip to content

Commit

Permalink
Create ishikawas.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Zlatanius authored Apr 19, 2024
1 parent 06fbc68 commit 59154d1
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ishikawas.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Generate Reports

on:
push:
branches:
- develop
schedule:
- cron: '0 0 * * *' # Run daily at midnight

jobs:
generate-reports:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10.x'

- name: Install dependencies
run: |
pip install matplotlib pandas requests PyGithub
- name: Run report generation script
env:
TOKEN: ${{ secrets.TOKEN }}
USER: ${{ secrets.USER }}
PROJECT: ${{ secrets.PROJECT }}
run: python scripts.py

0 comments on commit 59154d1

Please sign in to comment.