InvenTree/.github/workflows/version.yaml

20 lines
390 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:
pull_request:
branches-ignore:
- l10*
jobs:
check:
runs-on: ubuntu-latest
2021-09-12 11:40:56 +00:00
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Check version number
run: |
2021-09-12 11:52:02 +00:00
python3 ci/check_version_number.py --branch ${{ GITHUB_BASE_REF }}