Skip to content

build(deps-dev): bump fast-uri from 3.1.0 to 3.1.7 in /admin-core #57

build(deps-dev): bump fast-uri from 3.1.0 to 3.1.7 in /admin-core

build(deps-dev): bump fast-uri from 3.1.0 to 3.1.7 in /admin-core #57

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