Skip to content

Merge remote-tracking branch 'origin/main' #8

Merge remote-tracking branch 'origin/main'

Merge remote-tracking branch 'origin/main' #8

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
push:
paths:
- 'metadata/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repository content
uses: actions/checkout@v4 # checkout the repository content
- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.10' # install the python version needed
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install rocrate
- name: execute py script # run create_roCrate.py
run: python create_roCrate.py
- name: Commit and push changes
# env:
# GITHUB_TOKEN: ${{ secrets.JOHNNY_Q5_REPORTS_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "JohnnyQ5"
git add roCrates/
git diff-index --quiet HEAD || git commit -m "Add new RoCrates generated by workflow"
git push