-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trunk' into fix/block-menu-over-modal
- Loading branch information
Showing
743 changed files
with
14,275 additions
and
7,686 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -169,7 +169,7 @@ jobs: | |
ref: ${{ needs.bump-version.outputs.release_branch || github.ref }} | ||
|
||
- name: Use desired version of NodeJS | ||
uses: actions/setup-node@969bd2663942d722d85b6a8626225850c2f7be4b # v3.5.0 | ||
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: npm | ||
|
@@ -266,12 +266,12 @@ jobs: | |
run: echo ::set-output name=version::$(echo $VERSION | cut -d / -f 3 | sed 's/-rc./ RC/' ) | ||
|
||
- name: Download Plugin Zip Artifact | ||
uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 # v3.0.0 | ||
uses: actions/download-artifact@9782bd6a9848b53b110e712e20e42d89988822b7 # v3.0.1 | ||
with: | ||
name: gutenberg-plugin | ||
|
||
- name: Download Release Notes Artifact | ||
uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 # v3.0.0 | ||
uses: actions/download-artifact@9782bd6a9848b53b110e712e20e42d89988822b7 # v3.0.1 | ||
with: | ||
name: release-notes | ||
|
||
|
@@ -327,7 +327,7 @@ jobs: | |
git config user.email [email protected] | ||
- name: Setup Node (for CLI) | ||
uses: actions/setup-node@969bd2663942d722d85b6a8626225850c2f7be4b # v3.5.0 | ||
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 | ||
with: | ||
node-version-file: 'main/.nvmrc' | ||
registry-url: 'https://registry.npmjs.org' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
git config user.email [email protected] | ||
- name: Setup Node (for CLI) | ||
uses: actions/setup-node@969bd2663942d722d85b6a8626225850c2f7be4b # v3.5.0 | ||
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 | ||
with: | ||
node-version-file: 'main/.nvmrc' | ||
registry-url: 'https://registry.npmjs.org' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: 'Stale Issue Gardening' | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
issue-gardening: | ||
name: ${{ matrix.name }} | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository == 'WordPress/gutenberg' }} | ||
strategy: | ||
matrix: | ||
include: | ||
- name: 'Issues that require more info' | ||
message: 'Help us move this issue forward. This issue is being marked stale since it has no activity after 15 days of requesting more information. Please add info requested so we can help move the issue forward. Note: The triage policy is to close stale issues that need more info and no response after 2 weeks.' | ||
days-before-stale: 15 | ||
days-before-close: -1 | ||
only-labels: '[Status] Needs More Info' | ||
remove-stale-when-updated: true | ||
stale-issue-label: '[Status] Stale' | ||
- name: 'Issues that have needed testing for a period of time' | ||
message: "Hi,\nThis issue has gone 30 days without any activity. This means it is time for a check-in to make sure it is still relevant. If you are still experiencing this issue with the latest versions, you can help the project by responding to confirm the problem and by providing any updated reproduction steps.\nThanks for helping out." | ||
days-before-stale: 30 | ||
days-before-close: -1 | ||
only-labels: 'Needs Testing' | ||
remove-stale-when-updated: true | ||
stale-issue-label: '[Status] Stale' | ||
- name: 'Flaky test issues without activity' | ||
message: 'This issue has gone 30 days without any activity.' | ||
days-before-stale: 30 | ||
days-before-close: 1 | ||
only-labels: '[Type] Flaky Test' | ||
remove-stale-when-updated: true | ||
stale-issue-label: '[Status] Stale' | ||
- name: 'Issues without recent updates that need confirmation' | ||
message: "Hi,\nThis issue has gone 180 days without any activity. This means it is time for a check-in to make sure it is still relevant. If you are still experiencing this issue with the latest versions, you can help the project by responding to confirm the problem and by providing any updated reproduction steps.\nThanks for helping out." | ||
days-before-stale: 180 | ||
days-before-close: -1 | ||
remove-stale-when-updated: false | ||
stale-issue-label: 'Needs Testing' | ||
|
||
steps: | ||
- name: Update issues | ||
uses: actions/stale@5ebf00ea0e4c1561e9b43a292ed34424fb1d4578 # v6.0.1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: ${{ matrix.message }} | ||
days-before-stale: ${{ matrix.days-before-stale }} | ||
days-before-close: ${{ matrix.days-before-close }} | ||
only-labels: ${{ matrix.only-labels }} | ||
remove-stale-when-updated: ${{ matrix.remove-stale-when-updated }} | ||
stale-issue-label: ${{ matrix.stale-issue-label }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.