Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/deploy-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Deploy to hosting environment
env:
WORKFLOW_ID: ${{ 'deploy-application.yml' }}
uses: actions/github-script@v9.0.0
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
github-token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
script: |-
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [0.1.53](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.52...v0.1.53) (2026-08-20)
## [0.1.52](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.51...v0.1.52) (2026-08-20)
## [0.1.51](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.50...v0.1.51) (2026-07-31)
## [0.1.50](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.49...v0.1.50) (2026-06-04)
Expand Down
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@
"php": ">=8.5",
"composer/installers": "^2.3.0",
"humanmade/s3-uploads": "^3.0.11",
"johnpbloch/wordpress": "^6.9.1",
"koodimonni-language/en_gb": ">=6.9.1",
"oscarotero/env": "^2.1.1",
"roots/bedrock-autoloader": "^1.0.4",
"roots/bedrock-disallow-indexing": "^2.0.0",
"roots/multisite-url-fixer": "^1.1.0",
"roots/wordpress": "^7.1",
"roots/wp-config": "1.0.0",
"serenichron/learndash-bulk-lessons-or-topics": "^1.2.1",
"sleiman/airtable-php": "^3.0.0",
Expand Down Expand Up @@ -121,7 +121,7 @@
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true,
"roots/wordpress-core-installer": true,
"koodimonni/composer-dropin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"mnsami/composer-custom-directory-installer": false
Expand Down Expand Up @@ -166,14 +166,15 @@
"php -r \"copy('.env.example', '.env');\""
],
"post-install-cmd": [
"@configure-ssp",
"@install-ssp",
"if [ ! -e .env ]; then cp .env.dist .env; fi",
"if [ ! -e wp-cli.yml ]; then cp wp-cli.yml.dist wp-cli.yml; fi"
],
"post-update-cmd": [
"@configure-ssp"
"@update-ssp"
],
"configure-ssp": "cd web/app/plugins/cbf-multisite;composer install;cd ../../../..",
"install-ssp": "cd web/app/plugins/cbf-multisite;composer install;cd ../../../..",
"update-ssp": "cd web/app/plugins/cbf-multisite;composer update;cd ../../../..",
"lint": "phpcs --standard=phpcs.xml",
"lint:all": "@lint ./web/app/plugins/cbf-multisite ./web/app/themes/cbf-academy ./web/app/themes/cbf-jobs",
"fix": "phpcbf --standard=phpcs.xml",
Expand Down
Loading