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

Bump ip from 1.1.8 to 1.1.9 #144

Bump ip from 1.1.8 to 1.1.9

Bump ip from 1.1.8 to 1.1.9 #144

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'
});