Skip to content

refresh getcapabilities #61

refresh getcapabilities

refresh getcapabilities #61

Workflow file for this run

name: refresh getcapabilities
on:
workflow_dispatch:
schedule:
- cron: "30 14 * * 0"
permissions: write-all
jobs:
refresh_config:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3 # checkout the repository content to github runner.
- name: setup python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: execute py script
run: |
python main.py
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "refresh getcapabilities"
git push