login-with-google
login-with-google copied to clipboard
Add WP version check workflow
Description
Whenever a new version of WP is released, we are required to update the Tested up to information in the readme.txt file. This PR adds a workflow which is scheduled to run at midnight on every Monday.
Technical Details
- Uses skaut/wordpress-version-checker GitHub action to check for the discrepancy between the latest WP version and the WP version in the readme.txt
- The workflow is scheduled to run at
midnight on every Monday. - Raises an GitHub issue suggesting we need to update the
Tested up toin thereadme.txton the repository.
Improvement
We can add automatically assign the issues raised by the workflow to a developer, by adding the following code in the .wordpress-version-checker.json.
{
"assignees": ["alice", "bob"]
}
Reference:
Fixes/Covers issue
Fixes #172