From 41e474823a04be25bde334b9cebc7b6b64eac4f6 Mon Sep 17 00:00:00 2001 From: Rachael Sewell Date: Sun, 18 Oct 2020 19:56:42 -0700 Subject: [PATCH] revert the updated qualifier (#11) --- dist/index.js | 4 ++-- index.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index b024a2e..ea031eb 100644 --- a/dist/index.js +++ b/dist/index.js @@ -577,8 +577,8 @@ async function getTeamPingIssues (octokit, org, team, authors, commenters, since query = query.concat(`+-commenter%3A${commenter}`) } - // Add the updated since date query - query = query.concat(`+updated%3A%3E${since}`) + // Add the created since date query + query = query.concat(`+created%3A%3E${since}`) // Add ignore repos query ignoreRepos.forEach(elem => { diff --git a/index.js b/index.js index 5f015e1..03921b1 100755 --- a/index.js +++ b/index.js @@ -80,8 +80,8 @@ async function getTeamPingIssues (octokit, org, team, authors, commenters, since query = query.concat(`+-commenter%3A${commenter}`) } - // Add the updated since date query - query = query.concat(`+updated%3A%3E${since}`) + // Add the created since date query + query = query.concat(`+created%3A%3E${since}`) // Add ignore repos query ignoreRepos.forEach(elem => {