From 957db6467eed7a175f8e773fb1086c6730944170 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 27 May 2026 16:55:17 +0200 Subject: [PATCH 1/3] Add `admin_pass` argument alias (#335) --- README.md | 4 ++-- src/Core_Command.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aee0b530..8933a041 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ Subsequent uses of command will use the local cache if it still exists. Runs the standard WordPress installation process. ~~~ -wp core install --url= --title= --admin_user= [--admin_password=] --admin_email= [--locale=] [--skip-email] +wp core install --url= --title= --admin_user= [--admin_password|admin_pass=] --admin_email= [--locale=] [--skip-email] ~~~ Creates the WordPress tables in the database using the URL, title, and @@ -201,7 +201,7 @@ user_login doesn't exist, a new user will be created. --admin_user= The name of the admin user. - [--admin_password=] + [--admin_password|admin_pass=] The password for the admin user. Defaults to randomly generated string. --admin_email= diff --git a/src/Core_Command.php b/src/Core_Command.php index b65f7c01..b2cb31ec 100644 --- a/src/Core_Command.php +++ b/src/Core_Command.php @@ -502,7 +502,7 @@ public function is_installed( $args, $assoc_args ) { * --admin_user= * : The name of the admin user. * - * [--admin_password=] + * [--admin_password|admin_pass=] * : The password for the admin user. Defaults to randomly generated string. * * --admin_email= From 9ba55eff5579e731085239e9250093d5dcd410f0 Mon Sep 17 00:00:00 2001 From: swissspidy Date: Tue, 2 Jun 2026 15:40:13 +0000 Subject: [PATCH 2/3] Update file(s) from wp-cli/.github --- .github/workflows/copilot-setup-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index d5e319e5..617a49f0 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false From 7c63cee9fd53b333fea46764f6d38ddd9a41f8d6 Mon Sep 17 00:00:00 2001 From: swissspidy Date: Mon, 8 Jun 2026 16:57:22 +0000 Subject: [PATCH 3/3] Update file(s) from wp-cli/.github --- .github/workflows/copilot-setup-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 617a49f0..ffb6f8fd 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -31,7 +31,7 @@ jobs: - name: Set up PHP environment if: steps.check_composer_file.outputs.files_exists == 'true' - uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2 + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # v2 with: php-version: 'latest' ini-values: zend.assertions=1, error_reporting=-1, display_errors=On