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 => {