Open issue to remind doing something #3
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
name: Open issue to remind doing something | |
on: | |
schedule: | |
- cron: 0 0 15 08 * | |
permissions: | |
issues: write | |
jobs: | |
npm_deprecate: | |
name: Create issue for deprecating npm packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Issue Bot Action | |
uses: imjohnbo/[email protected] | |
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." | |
``` |