Update HERO-02.jpg #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# v1.5.1.0 | |
# created: | |
# updated: 27 May 2023 | |
# update checkout to @main | |
# update checkout to @latest (3.3.0) | |
# update checkout to v3.0.2 | |
# update AVC to v1.4 | |
# This is a standard workflow to validate all .version files | |
# found in the root directory of the repository and any subdirectories, | |
# whenever something is pushed to any branch in the repository, or to a "foreign" branch active in a pull request. | |
# It should cover most cases. | |
name: AVC .version file validation | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
jobs: | |
validate_version_files: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@main | |
with: | |
fetch-depth: 1 | |
- name: Validate files | |
uses: DasSkelett/AVC-VersionFileValidator@master |