forked from severedsolo/OhScrap
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ab5058
commit 39cefa8
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# v1.4.1 | ||
# 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/[email protected] | ||
with: | ||
fetch-depth: 1 | ||
- name: Validate files | ||
uses: DasSkelett/AVC-VersionFileValidator@master |