Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/verify-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,25 @@ jobs:
repository: PHPCSStandards/schema.phpcodesniffer.com
event-type: phpcs-release

#######################################################
# Trigger an update of the documentation in the Wiki. #
#######################################################
trigger-wiki-update:
runs-on: ubuntu-latest

# Only run this workflow in the context of this repo.
if: github.repository_owner == 'PHPCSStandards'

name: "Trigger update of wiki"

steps:
- name: Trigger wiki update
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.WORKFLOW_DISPATCH_DOCS_PAT }}
repository: PHPCSStandards/PHP_CodeSniffer-documentation
event-type: phpcs-release

##################################################################################
# Verify the release is available in all the right places and works as expected. #
##################################################################################
Expand Down