Skip to content
Open
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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
steps:
# Sets the Node version
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "20.x"
node-version: "24.x"
- name: Check site
uses: jtalk/url-health-check-action@v4
uses: jtalk/url-health-check-action@v5
with:
url: ${{ vars.DESTINATION_URL }}
8 changes: 4 additions & 4 deletions .github/workflows/deploy-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2

- name: Cache Composer dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "20.x"

Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Deploy to hosting environment
env:
WORKFLOW_ID: ${{ 'deploy-application.yml' }}
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
script: |-
Expand Down
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
web/app/languages
web/app/plugins/*
!web/app/plugins/.gitkeep
!web/app/plugins/buddyboss-platform
!web/app/plugins/buddyboss-platform-pro
!web/app/plugins/buddypages
web/app/plugins/buddypages/.git
Expand Down Expand Up @@ -48,10 +49,11 @@ web/app/cache/wp-rocket

# Composer
**/vendor/*
!web/app/plugins/buddyboss-platform-pro/vendor/*
!web/app/plugins/buddyboss-platform*/**/vendor/*
!web/app/plugins/wp-all-import-pro/vendor/*
!web/app/plugins/wp-rocket/vendor/*
!web/app/plugins/wpforms/vendor/*
!web/app/themes/buddyboss-theme/**/vendor/*
!vendor/.gitkeep

# WP-CLI
Expand Down Expand Up @@ -86,3 +88,6 @@ sync.conf

# GitHub
auth.json

# Apache
web/.htaccess
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

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.41](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.40...v0.1.41) (2026-02-27)


### Features

* add S3 endpoint filters ([35e103c](https://github.com/CodingBlackFemales/wordpress/commit/35e103c77affb49b59a88cd5b1cc01ecf1f5d04b))
* configure S3 Uploads plugin ([dfaf029](https://github.com/CodingBlackFemales/wordpress/commit/dfaf029eb073cb091b3ddd1394fa982a58ef3fc2))


### Bug Fixes

* uninstall obsolete plugin ([18499bf](https://github.com/CodingBlackFemales/wordpress/commit/18499bf25f2465d7975ae54a4c55b27c98737971))

## [0.1.40](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.39...v0.1.40) (2025-11-11)

## [0.1.39](https://github.com/CodingBlackFemales/wordpress/compare/v0.1.38...v0.1.39) (2025-11-11)
Expand Down
10 changes: 1 addition & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,10 @@
"koodimonni-plugin-language/*",
"koodimonni-theme-language/*"
]
},
{
"type": "vcs",
"url": "https://github.com/codingblackfemales/buddyboss-platform.git"
}
],
"require": {
"php": ">=8.0",
"buddyboss/buddyboss-platform": "dev-release",
"composer/installers": "^2.3.0",
"humanmade/s3-uploads": "^3.0.11",
"johnpbloch/wordpress": "^6.9.1",
Expand All @@ -73,7 +68,7 @@
"wpackagist-plugin/import-meetup-events": "^1.6.9",
"wpackagist-plugin/jetpack": "^15.5.0",
"wpackagist-plugin/login-as-user": "^1.6.8",
"wpackagist-plugin/mailchimp-for-woocommerce": "^5.6.0",
"wpackagist-plugin/mailchimp-for-woocommerce": "^6.0",
"wpackagist-plugin/members": "^3.2.18",
"wpackagist-plugin/myworks-woo-sync-for-quickbooks-online": "^3.0.3",
"wpackagist-plugin/optimole-wp": "^4.2.1",
Expand Down Expand Up @@ -160,16 +155,13 @@
"php -r \"copy('.env.example', '.env');\""
],
"post-install-cmd": [
"@configure-bp",
"@configure-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-bp",
"@configure-ssp"
],
"configure-bp": "cd web/app/plugins/buddyboss-platform;composer install;cd ../../../..",
"configure-ssp": "cd web/app/plugins/cbf-multisite;composer install;cd ../../../..",
"lint": "phpcs --standard=phpcs.xml",
"lint:all": "@lint ./web/app/plugins/cbf-multisite ./web/app/themes/cbf-academy ./web/app/themes/cbf-jobs",
Expand Down
Loading