Skip to content

ParlaMintSample2root #1

ParlaMintSample2root

ParlaMintSample2root #1

name: ParlaMintSample2root
# Controls when the action will run.
on:
# 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:
Changes:
runs-on: ubuntu-latest
outputs:
parla_process: '${{ steps.detect-changes.outputs.parla_process }}'
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout ParlaMint
uses: actions/checkout@v3
with:
path: ParlaMint
fetch-depth: 2 # when called a pull_request - test is run on test merge -> full history is not needed to detect changes
- name: Setup
uses: ./ParlaMint/.github/actions/ParlaMintEnvSetup
with:
repo_token: ${{secrets.GITHUB_TOKEN}}
- name: Commit new sample root
uses: ./ParlaMint/.github/actions/ParlaMintSample2root