diff --git a/.github/scripts/pr-governance-issue-check.js b/.github/scripts/pr-governance-issue-check.js index c00910ccd40..2b4c45640e2 100644 --- a/.github/scripts/pr-governance-issue-check.js +++ b/.github/scripts/pr-governance-issue-check.js @@ -11,7 +11,7 @@ module.exports = async ({ github, context, core }) => { } // Skip for dependabot and automated PRs - const skipAuthors = ['dependabot[bot]', 'dependabot', 'app/dependabot']; + const skipAuthors = ['dependabot[bot]', 'dependabot', 'app/dependabot', 'azure-sdk']; if (skipAuthors.includes(pr.user.login)) { console.log(`Skipping: automated PR by ${pr.user.login}`); core.setOutput('skipped', 'true');