Skip to content

Commit 2f00c14

Browse files
authored
Merge branch 'trunk' into add/on-this-day-widget
2 parents 242b0d5 + c710ca6 commit 2f00c14

220 files changed

Lines changed: 12194 additions & 1910 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/performance.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ on:
3737
- 'tests/performance/**'
3838
# Confirm any changes to relevant workflow files.
3939
- '.github/workflows/performance.yml'
40-
- '.github/workflows/reusable-performance.yml'
4140
- '.github/workflows/reusable-performance-*.yml'
4241
workflow_dispatch:
4342

.github/workflows/pull-request-comments.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,15 @@ jobs:
3030
if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name == 'pull_request_target' }}
3131
steps:
3232
- name: Post a welcome comment
33-
uses: wow-actions/welcome@68019c2c271561f63162fea75bb7707ef8a02c85 # v1.3.1
33+
uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3.1.0
3434
with:
35-
FIRST_PR_REACTIONS: 'hooray'
36-
FIRST_PR_COMMENT: >
37-
Hi @{{ author }}! 👋
35+
# While issues are disabled for this repository and this will not post anywhere, this action configures both
36+
# message inputs as required.
37+
# See https://github.com/actions/first-interaction/issues/365.
38+
issue_message: |
39+
"Baseball is dull only to dull minds." - Red Barber
40+
pr_message: >
41+
Hi there! 👋
3842
3943
4044
Thank you for your contribution to WordPress! 💖

.github/workflows/reusable-check-built-files.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
# Performs the following steps:
1818
# - Checks out the repository.
1919
# - Sets up Node.js.
20-
# - Configures caching for Composer.
2120
# - Installs Composer dependencies.
2221
# - Logs general debug information about the runner.
2322
# - Installs npm dependencies.
@@ -48,18 +47,12 @@ jobs:
4847
node-version-file: '.nvmrc'
4948
cache: npm
5049

51-
# This date is used to ensure that the PHPCS cache is cleared at least once every week.
52-
# http://man7.org/linux/man-pages/man1/date.1.html
53-
- name: "Get last Monday's date"
54-
id: get-date
55-
run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> "$GITHUB_OUTPUT"
56-
5750
# Since Composer dependencies are installed using `composer update` and no lock file is in version control,
5851
# passing a custom cache suffix ensures that the cache is flushed at least once per week.
5952
- name: Install Composer dependencies
6053
uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
6154
with:
62-
custom-cache-suffix: ${{ steps.get-date.outputs.date }}
55+
custom-cache-suffix: $(/bin/date -u --date='last Mon' "+%F")
6356

6457
- name: Log debug information
6558
run: |

.github/workflows/reusable-coding-standards-php.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
# Performs the following steps:
3030
# - Checks out the repository.
3131
# - Sets up PHP.
32+
# - Gets last Monday's date for use in cache keys.
3233
# - Configures caching for PHPCS scans.
3334
# - Installs Composer dependencies.
3435
# - Make Composer packages available globally.

0 commit comments

Comments
 (0)