-
Notifications
You must be signed in to change notification settings - Fork 1
25 lines (23 loc) · 1.19 KB
/
reminders.yml
File metadata and controls
25 lines (23 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Open issue to remind doing something
on:
schedule:
- cron: 0 0 30 11 *
permissions:
issues: write
jobs:
npm_deprecate:
name: Create issue for deprecating npm packages
runs-on: ubuntu-latest
steps:
- name: Issue Bot Action
uses: imjohnbo/issue-bot@v3.4.3
with:
assignees: nicolo-ribaudo
title: "Deprecate renamed npm packages"
body: |-
Please run these commands:
```
npm deprecate @babel/plugin-proposal-duplicate-named-capturing-groups-regex "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-duplicate-named-capturing-groups-regex instead."
npm deprecate @babel/plugin-proposal-regexp-modifiers "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-regexp-modifiers instead."
npm deprecate @babel/plugin-proposal-json-modules "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-modules instead."
```