Skip to content
This repository has been archived by the owner on Mar 30, 2024. It is now read-only.

Bump django from 4.2.5 to 4.2.10 #18

Bump django from 4.2.5 to 4.2.10

Bump django from 4.2.5 to 4.2.10 #18

name: Version change checker
on:
pull_request:
branches: [main]
types: [opened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Check if VERSION file was modified
run: |
version_file="mira/VERSION"
if git diff --name-only HEAD^1 HEAD | grep -q "$version_file"; then
echo "$version_file has been modified in this pull request."
else
echo "::error::$version_file must be modified in this pull request."
exit 1
fi