-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add validate plugin version action (#85)
* add validate plugin version action * use current draft branch * update checkout version * update action version * add write permissions for the github bot * use version that allows user-defined filenames * move the action from the lint-test into a standalone workflow
- Loading branch information
1 parent
930455f
commit 9f871cd
Showing
2 changed files
with
24 additions
and
5 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 |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
DB_PASSWORD: root | ||
DB_HOST: localhost | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Install NPM & Composer dependencies | ||
run: | | ||
composer install | ||
|
@@ -39,7 +39,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
name: WP.org Code Analysis | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: WP.org Code Analysis | ||
uses: pantheon-systems/[email protected] | ||
with: | ||
|
@@ -48,7 +48,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
name: PHP Compatibility | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- run: echo "Note these tests may be incomplete for newer PHP version and miss some deprecations" | ||
shell: bash | ||
- name: PHPCompatibility | ||
|
@@ -61,7 +61,7 @@ jobs: | |
name: Validate README Spacing | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: pantheon-systems/validate-readme-spacing@v1 | ||
with: | ||
filepath: 'README.MD' | ||
filepath: 'README.MD' |
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,19 @@ | ||
name: Validate Tested Up To Version | ||
on: | ||
schedule: | ||
- cron: '0 0 * * 0' | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: write | ||
|
||
jobs: | ||
validate-plugin-version: | ||
runs-on: ubuntu-latest | ||
name: Validate Plugin Version | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: jazzsequence/action-validate-plugin-version@v1 | ||
with: | ||
filenames: 'readme.txt,README.MD' | ||
branch: 'release' |