Create contributors.rq #14
This file contains hidden or 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: Process SPARQL TTL files | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| extract: | |
| name: Extract SPARQL files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.11 | |
| - name: Install dependencies | |
| run: pip install rdflib | |
| - name: Extract | |
| run: python scripts/transformDotTtlToDotSparql.py | |
| - name: Commit new .rq files | |
| run: | | |
| git config --global user.name 'GitHub Action' | |
| git config --global user.email 'action@github.com' | |
| git add . | |
| if git diff --exit-code --staged; then | |
| echo "No changes" | |
| else | |
| git pull | |
| git commit -m 'Updated .rq files' | |
| git push | |
| fi |