Skip to content

Run Data Workflow via Python #67

Run Data Workflow via Python

Run Data Workflow via Python #67

Workflow file for this run

name: Process Issue Tracker Feature Requests via Python
on:
workflow_dispatch:
schedule:
- cron: '20 */6 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: execute py script
env:
GH_SERILUM_DATA_WORKFLOW_API: ${{ secrets.GH_SERILUM_DATA_WORKFLOW_API }}
run: python main.py
- name: commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git diff-index --quiet HEAD || (git commit -a -m "Updated feature request data." --allow-empty)
- name: push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main