build(deps): bump react-router-dom from 6.30.3 to 6.30.6 in /lib/one-onboarding #61
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 "match=true" >> $GITHUB_OUTPUT | |
| 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 bump-version --ver=<version-number>` | |
| - [ ] Verify `Stable tag` is `<version-number>` in readme.txt | |
| - [ ] Verify `Tested upto` is set to latest tested version of WordPress | |
| - [ ] Update version in `ultimate-addons-for-gutenberg.php` in plugin description | |
| - [ ] Verify constant `UAGB_VER` in `class-uagb-loader.php` with latest version of Spectra | |
| - [ ] Generate README.md : `grunt readme` | |
| - [ ] Verify changelog `date` and `content` as per Spectra standards | |
| - [ ] Generate POT file : `grunt i18n` and `npm run makepot` | |
| - [ ] Update version in `package.json` and `package-lock.json` | |
| --- | |
| body-update-action: 'suffix' | |
| body-uppercase-base-match: false |