| Server IP : 123.56.80.60 / Your IP : 216.73.216.78 Web Server : Apache/2.4.54 (Win32) OpenSSL/1.1.1s PHP/7.4.33 mod_fcgid/2.3.10-dev System : Windows NT iZhx3sob14hnz7Z 10.0 build 14393 (Windows Server 2016) i586 User : SYSTEM ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/site/20241224/spunner/wp-content/plugins/astra-sites/.github/workflows/ |
Upload File : |
name: PR update
on:
pull_request:
types: [ labeled ]
jobs:
update_pr:
name: PR update
if: ${{ github.event.label.name == 'Release PR checklist' }}
runs-on: ubuntu-latest
steps:
- name: Check Branch
id: check-branch
run: |
if [[ ${{ github.base_ref }} == master || ${{ github.base_ref }} == release-candidate || ${{ 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-_.\\/]+'
title-template: 'Build: Release PR'
body-template: |
### Description
- Final release PR. Please check all the checklist below before merging.
---
### Checklist:
- [ ] Finalize readme.txt
- [ ] Add doc links in the readme.txt
- [ ] Check if Gutenberg Blocks/Astra Notices library is updated to latest - Run `composer update`
- [ ] Run to update packages : `npm audit fix`
- [ ] Run to produce rtl files : `grunt rtl`
- [ ] Run to update the Template Library : `wp astra-sites sync --force`
- [ ] PHPCS - vendor/bin/phpcs
- [ ] Run to update version number : `grunt version-bump --ver=<version-number>`
- [ ] Update - Tested Upto - readme.txt
- [ ] Update readme.txt file and then run: `grunt readme`
- [ ] Generate POT file : `grunt i18n`
- [ ] Add draft Release notes on github
- [ ] Add draft changelogs to wpastra.com
- [ ] Open PR to backport branch to `next-release`
---
body-update-action: 'prefix'
title-update-action: 'prefix'
body-uppercase-base-match: false