mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
21 lines
391 B
YAML
21 lines
391 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 ${{ github.base_ref }}
|