Dependabot 및 Semantic Release 이메일 자동 보관
4702 단어 gmailappscriptdependabot
현재 이것은 5분마다 cron에서 실행되고 있습니다.
function main() {
// archive dependabot notifications
GmailApp.moveThreadsToArchive(
GmailApp.search('label:"inbox" from:dependabot[bot]').filter((thread) =>
threadMatches(thread, [/Merged .* into .*/, /Closed /])
)
);
// archive semantic release publish notifications
GmailApp.moveThreadsToArchive(
GmailApp.search('label:"inbox" from:github-actions[bot]').filter((thread) =>
threadMatches(thread, [
/This PR is included in version/,
/This issue has been resolved in version/,
])
)
);
}
function threadMatches(thread, patterns) {
const messages = thread.getMessages();
if (messages.length > 1) {
for (let message of messages) {
for (let pattern of patterns) {
const match = message.getBody().match(pattern);
if (match) {
return true;
}
}
}
}
return false;
}
이것은 모두 매우 기본적이지만 작동합니다. 향후 작업은 스레드 날짜와 풀 요청의 현재 상태에 따라 작업이 필요한 경우 스레드가 받은 편지함으로 이동되도록 dependsabot 기능을 반전하는 데 초점을 맞출 수 있습니다.
저는 아직 다양한 저장소, 조직 등에 걸친 저의 오픈 소스 작업을 위한 완벽한 워크플로를 찾지 못했습니다. 이메일은 전체 범위를 위한 좋은 백스톱이며 위의 스크립트는 저에게 궁극적인 일관성을 제공합니다.
Reference
이 문제에 관하여(Dependabot 및 Semantic Release 이메일 자동 보관), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jpoehnelt/automatically-archiving-dependabot-and-semantic-release-emails-288i텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)