Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Add Monorepo Merge Notice Workflow (#12101)
Browse files Browse the repository at this point in the history
Added Merge Notice Workflow
  • Loading branch information
ObliviousHarmony authored Dec 9, 2023
1 parent 2230f68 commit dc9d3dd
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/monorepo-merge-notices.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: 'Monorepo Merge Notices'
on:
pull_request_target:
types: [ 'opened' ]
issues:
types: [ 'opened' ]
jobs:
issue_block:
name: 'Block Issues & Pull Requests'
runs-on: 'ubuntu-latest'
steps:
- name: 'Add Merge Notice'
uses: 'actions/github-script@v7'
with:
script: |
github.rest.issues.createComment( {
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Thank you for your interest in contributing to WooCommerce!\n\n\
WooCommerce Blocks [has been merged into the WooCommerce Monorepo](https://developer.woo.com/2023/12/01/woocommerce-blocks-merging-into-the-woocommerce-monorepo/).\n\n\
From now on, please open any issues or pull requests in the [woocommerce/woocommerce](https://github.com/woocommerce/woocommerce) repository.'
} );
- name: 'Close'
uses: 'actions/github-script@v7'
with:
script: |
github.rest.issues.update({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
state: 'closed'
});

0 comments on commit dc9d3dd

Please sign in to comment.