-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (28 loc) · 1020 Bytes
/
monitoring.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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