InvenTree/.github/workflows/version.yaml

24 lines
416 B
YAML
Raw Normal View History

2021-09-12 11:36:14 +00:00
# Check that the version number format matches the current branch
name: Version Numbering
on:
push:
branches-ignore:
- l10*
pull_request:
branches-ignore:
- l10*
jobs:
check:
runs-on: ubuntu-latest
steps:
2021-09-12 11:37:30 +00:00
- name: Checkout Code
uses: actions/checkout@v2
- name: Check version number
run: |
python3 ci/check_version_number.py --branch ${GITHUB_REF##*/}