Add usage data for all projects #27
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: 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 |