Bump axios, gpt-po and @wordpress/scripts #12
This file contains hidden or 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: Update checklist for Release PR | |
on: | |
pull_request: | |
types: [ labeled ] | |
jobs: | |
update_pr: | |
name: Update checklist for Release PR | |
if: ${{ github.event.label.name == 'Release PR' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Branch | |
id: check-branch | |
run: | | |
if [[ ${{ github.base_ref }} == master || ${{ github.base_ref }} == dev || ${{ github.base_ref }} == next-release ]]; then | |
echo ::set-output name=match::true | |
fi | |
- uses: tzkhan/pr-update-action@v2 | |
if: steps.check-branch.outputs.match == 'true' | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
base-branch-regex: '[A-Za-z\d-_.\\/]+' | |
head-branch-regex: '[A-Za-z\d-_.\\/]+' | |
body-template: | | |
--- | |
### Release Checklist: | |
- [ ] Run to update version number : `grunt version-bump --ver=<version-number>` | |
- [ ] Verify the version number in `package.json` and `package-lock.json` | |
- [ ] Verify `Stable tag` is `<version-number>` in readme.txt | |
- [ ] Verify `Tested upto` is set to latest tested version of WordPress | |
- [ ] Update version in `sureforms.php` in plugin description | |
- [ ] Verify constant `SRFM_VER` in `sureforms.php` with latest version of SureForms | |
- [ ] Verify constant `SRFM_PRO_RECOMMENDED_VER` in `sureforms.php` with compatible version of SureForms Pro | |
- [ ] Verify changelog `date` and `content` as per SureForms standards | |
- [ ] Generate README.md : `grunt readme` | |
- [ ] Generate POT file : `npm run makepot` | |
--- | |
body-update-action: 'suffix' | |
body-uppercase-base-match: false |