mirror of
https://github.com/tenrok/axios.git
synced 2026-06-20 20:00:40 +03:00
chore(ci): added labeling and notification for published PRs; (#6059)
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import minimist from "minimist";
|
||||
import RepoBot from '../RepoBot.js';
|
||||
|
||||
const argv = minimist(process.argv.slice(2));
|
||||
console.log(argv);
|
||||
|
||||
const tag = argv.tag;
|
||||
|
||||
if (!tag) {
|
||||
throw new Error('tag must be specified');
|
||||
}
|
||||
|
||||
const bot = new RepoBot();
|
||||
|
||||
(async() => {
|
||||
try {
|
||||
await bot.notifyPublishedPRs(tag);
|
||||
} catch (err) {
|
||||
console.warn('Error:', err.message);
|
||||
}
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user