Skip to content

Update monitoring

Update monitoring #17

Workflow file for this run

name: Update monitoring
on:
push:
paths:
- 'check_resource_usage/VSC_monitoring/input/**.csv'
workflow_dispatch:
jobs:
run_python_script:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10' # Replace 'x' with your desired Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r check_resource_usage/requirements.txt # Replace with your requirements file if needed
- name: Run Python script
run: python check_resource_usage/VSC_monitoring/monitoring.py # Replace 'script.py' with your Python script filename and 'folder' with your folder name
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Auto-updated monitoring.png