Skip to content

Commit

Permalink
Repo Gardening: remove WordPress.com Commit reminder task (#40277)
Browse files Browse the repository at this point in the history
* Repo Gardening: remove WordPress.com Commit reminder task

Fusion is long dead, long live Fusion.

* Remove other references to Fusion

Co-authored-by: tbradsha <[email protected]>

---------

Co-authored-by: tbradsha <[email protected]>
  • Loading branch information
jeherve and tbradsha authored Nov 20, 2024
1 parent 979a6c9 commit 3def19d
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 137 deletions.
2 changes: 1 addition & 1 deletion projects/github-actions/repo-gardening/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Boost: Fix [Boost Feature] labels [#35947]
- Check description task: Handle empty PR body. [#36446]
- Repo Gardening: fix workflow for adding [OSS Citizen] label. [#37252]
- WPCOM Commit Reminder rask: Fix detection of existing reminder comment. [#39042]
- WPCOM Commit Reminder task: Fix detection of existing reminder comment. [#39042]

## [5.0.0] - 2024-02-07
### Added
Expand Down
1 change: 0 additions & 1 deletion projects/github-actions/repo-gardening/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ Here is the current list of tasks handled by this action:
- Check Description (`checkDescription`): Checks the contents of a PR description, and ensure it matches our recommendations.
- Add Labels (`addLabels`): Adds labels to PRs that touch specific features.
- Clean Labels (`cleanLabels`): Removes Status labels once a PR or issue has been closed or merged.
- WordPress.com Commit Reminder (`wpcomCommitReminder`): Posts a comment on merged PRs to remind Automatticians to commit the matching WordPress.com change.
- Notify Design (`notifyDesign`): Sends a Slack Notification to the Design team to request feedback, based on labels applied to a PR.
- Notify Editorial (`notifyEditorial`): Sends a Slack Notification to the Editorial team to request feedback, based on labels applied to a PR.
- Flag OSS (`flagOss`): flags entries by external contributors, adds an "OSS Citizen" label to the PR, and sends a Slack message.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: major
Type: removed

WordPress.com Commit Reminder: remove this task as it is no longer used in the Jetpack monorepo.
5 changes: 0 additions & 5 deletions projects/github-actions/repo-gardening/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const notifyDesign = require( './tasks/notify-design' );
const notifyEditorial = require( './tasks/notify-editorial' );
const replyToCustomersReminder = require( './tasks/reply-to-customers-reminder' );
const triageIssues = require( './tasks/triage-issues' );
const wpcomCommitReminder = require( './tasks/wpcom-commit-reminder' );
const debug = require( './utils/debug' );
const ifNotClosed = require( './utils/if-not-closed' );
const ifNotFork = require( './utils/if-not-fork' );
Expand Down Expand Up @@ -57,10 +56,6 @@ const automations = [
action: [ 'labeled' ],
task: ifNotClosed( notifyEditorial ),
},
{
event: 'push',
task: wpcomCommitReminder,
},
{
event: 'pull_request_target',
action: [ 'opened' ],
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Significance: patch
Type: other
Comment: Janitorial: remove references to Fusion.


4 changes: 0 additions & 4 deletions projects/plugins/jetpack/extensions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,6 @@ In Jetpack the scenario that has been used historically is to create a deprecati
- You can view the various build commands in `package.json`
- You can see the build configuration in `webpack.config.extensions.js`
If you need to modify the build process, bear in mind that config files are also
synced to WordPress.com via Fusion. Consult with a Jetpack crew member to ensure
you test the new build in both environments.
### Debugging
Setting these might be useful for debugging with block editor:
Expand Down

0 comments on commit 3def19d

Please sign in to comment.