Skip to content

del: unnassary imports #820

del: unnassary imports

del: unnassary imports #820

Workflow file for this run

name: "Check version!"
on:
pull_request:
branches:
- "*-master"
jobs:
changed_files:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Get Changed Files
id: changed-files-specific
uses: tj-actions/changed-files@v47.0.6
with:
files: gradle.properties
- name: File not updated
if: steps.changed-files-specific.outputs.any_changed != 'true'
run: |
echo "Version was not updated!"
exit 1