Skip to content

SolidPod Securer

SolidPod Securer #293

Workflow file for this run

name: SolidPod Securer
on:
schedule:
- cron: '38 */6 * * *'
workflow_dispatch:
jobs:
secureSolidPodChanges:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v4 # checkout the repository content to github runner.
- name: setup python
uses: actions/setup-python@v4
with:
python-version: 3.8 #install the python needed
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests
pip install rdflib
- name: execute py script
run: |
python securer.py
git config user.name github-actions
git config user.email [email protected]
git diff --quiet || (git add comments3.ttl && git commit -m "Updated comments3.ttl")
git push