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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions .github/workflows/auto-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@ jobs:
if: github.ref_type == 'branch'
runs-on: ubuntu-latest
steps:
-
name: Checkout Branch ${{ github.ref_name }}
uses: actions/checkout@v4
-
name: Create Pull Request
uses: bfren/pull-request@v2
with:
github_token: ${{ secrets.PAT }}
destination_branch: main
pr_title: ${{ github.ref_name }}
pr_body: "Merging branch to create ${{ github.ref_name }}."
-
name: Checkout Branch ${{ github.ref_name }}
uses: actions/checkout@v4
-
name: Create Pull Request
run: gh pr create -B main --title "${{ github.ref_name }}" --body "Merging branch to create ${{ github.ref_name }}."
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
7 changes: 4 additions & 3 deletions Dockerfile.esh
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ ENV \
BF_WP_DISABLE_MAJOR_UPDATES=1 \
# whether or not to enable HTTPS behind a proxy server
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
BF_WP_INSTALL_NINJAFIREWALL=1 \
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
# (you will still have to enable it in the WordPress backend)
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
BF_WP_INSTALL_NINJAFIREWALL=0 \
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
BF_WP_INSTALL_WEBAUTHN=1 \
# set to 0 to use WordPress cron instead of system cron (will reduce performance)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.4.10
6.4.11
7 changes: 4 additions & 3 deletions php7.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ ENV \
BF_WP_DISABLE_MAJOR_UPDATES=1 \
# whether or not to enable HTTPS behind a proxy server
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
BF_WP_INSTALL_NINJAFIREWALL=1 \
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
# (you will still have to enable it in the WordPress backend)
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
BF_WP_INSTALL_NINJAFIREWALL=0 \
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
BF_WP_INSTALL_WEBAUTHN=1 \
# set to 0 to use WordPress cron instead of system cron (will reduce performance)
Expand Down
7 changes: 4 additions & 3 deletions php8.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ ENV \
BF_WP_DISABLE_MAJOR_UPDATES=1 \
# whether or not to enable HTTPS behind a proxy server
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
BF_WP_INSTALL_NINJAFIREWALL=1 \
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
# (you will still have to enable it in the WordPress backend)
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
BF_WP_INSTALL_NINJAFIREWALL=0 \
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
BF_WP_INSTALL_WEBAUTHN=1 \
# set to 0 to use WordPress cron instead of system cron (will reduce performance)
Expand Down
7 changes: 4 additions & 3 deletions php8.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ ENV \
BF_WP_DISABLE_MAJOR_UPDATES=1 \
# whether or not to enable HTTPS behind a proxy server
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
BF_WP_INSTALL_NINJAFIREWALL=1 \
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
# (you will still have to enable it in the WordPress backend)
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
BF_WP_INSTALL_NINJAFIREWALL=0 \
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
BF_WP_INSTALL_WEBAUTHN=1 \
# set to 0 to use WordPress cron instead of system cron (will reduce performance)
Expand Down
7 changes: 4 additions & 3 deletions php8.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ ENV \
BF_WP_DISABLE_MAJOR_UPDATES=1 \
# whether or not to enable HTTPS behind a proxy server
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
BF_WP_INSTALL_NINJAFIREWALL=1 \
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
# (you will still have to enable it in the WordPress backend)
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
BF_WP_INSTALL_NINJAFIREWALL=0 \
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
BF_WP_INSTALL_WEBAUTHN=1 \
# set to 0 to use WordPress cron instead of system cron (will reduce performance)
Expand Down
7 changes: 4 additions & 3 deletions php8.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ ENV \
BF_WP_DISABLE_MAJOR_UPDATES=1 \
# whether or not to enable HTTPS behind a proxy server
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
BF_WP_INSTALL_NINJAFIREWALL=1 \
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
# (you will still have to enable it in the WordPress backend)
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
BF_WP_INSTALL_NINJAFIREWALL=0 \
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
BF_WP_INSTALL_WEBAUTHN=1 \
# set to 0 to use WordPress cron instead of system cron (will reduce performance)
Expand Down
7 changes: 4 additions & 3 deletions php8.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ ENV \
BF_WP_DISABLE_MAJOR_UPDATES=1 \
# whether or not to enable HTTPS behind a proxy server
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
BF_WP_INSTALL_NINJAFIREWALL=1 \
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
# (you will still have to enable it in the WordPress backend)
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
BF_WP_INSTALL_NINJAFIREWALL=0 \
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
BF_WP_INSTALL_WEBAUTHN=1 \
# set to 0 to use WordPress cron instead of system cron (will reduce performance)
Expand Down