Skip to content

Initialize collection #6

Initialize collection

Initialize collection #6

Workflow file for this run

---
name: version
on:
pull_request:
branches:
- master
jobs:
version:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: List all changed files
uses: tj-actions/changed-files@v40
with:
since_last_remote_commit: true
files: galaxy.yml
id: check
- name: Fail if version has not been updated
if: steps.check.outputs.test_any_changed != 'true'
run: exit 1