From 397e88b33ad2850bcc43b27671d365d113b71931 Mon Sep 17 00:00:00 2001 From: Daniel Tipping Date: Fri, 8 Nov 2024 12:42:30 +0000 Subject: [PATCH] Add workflow to check release version is correct (#54) * Add workflow to check release/hotfix version is correct --- .github/workflows/check-release-version.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/check-release-version.yml diff --git a/.github/workflows/check-release-version.yml b/.github/workflows/check-release-version.yml new file mode 100644 index 00000000..9cff1a75 --- /dev/null +++ b/.github/workflows/check-release-version.yml @@ -0,0 +1,11 @@ +name: Check VERSION file + +on: + push: + branches: + - "release/**" + - "hotfix/**" + +jobs: + check_version: + uses: ecmwf-actions/reusable-workflows/.github/workflows/check-release-version.yml@v2