InvenTree/.github/workflows/version.yaml
Oliver Walters 3d4a8bdd22 env prefix
2021-09-12 21:54:59 +10:00

21 lines
395 B
YAML

# Check that the version number format matches the current branch
name: Version Numbering
on:
pull_request:
branches-ignore:
- l10*
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Check version number
run: |
python3 ci/check_version_number.py --branch ${{ env.GITHUB_BASE_REF }}