add a workflow dispatch for the tested up to version action #1
Workflow file for this run
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
name: Validate Plugin Version Test | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: List all branches | |
run: git branch -a | |
- name: Validate Plugin Version | |
uses: jazzsequence/action-validate-plugin-version@v1 | |
with: | |
filenames: 'readme.txt,README.MD' | |
branch: 'release' | |
dry-run: true | |