File tree Expand file tree Collapse file tree
actions/check-linked-issue Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ inputs:
2727 description : Skip the linked issue check when the PR author is dependabot[bot]
2828 required : false
2929 default : " true"
30+ ignoreOverturePullRequester :
31+ description : Skip the linked issue check when the PR author is overture-pull-requester[bot]
32+ required : false
33+ default : " true"
3034
3135runs :
3236 using : composite
@@ -59,12 +63,18 @@ runs:
5963 const { owner, repo } = context.repo;
6064 const minimumLinkedIssues = parseInt(core.getInput('minimumLinkedIssues')) || 1;
6165 const ignoreDependabot = core.getInput('ignoreDependabot') !== 'false';
66+ const ignoreOverturePullRequester = core.getInput('ignoreOverturePullRequester') !== 'false';
6267
6368 if (ignoreDependabot && context.payload.pull_request.user.login === 'dependabot[bot]') {
6469 core.info('⏭️ Skipping linked issue check for dependabot PR.');
6570 return;
6671 }
6772
73+ if (ignoreOverturePullRequester && context.payload.pull_request.user.login === 'overture-pull-requester[bot]') {
74+ core.info('⏭️ Skipping linked issue check for overture-pull-requester PR.');
75+ return;
76+ }
77+
6878 const query = `
6979 query($owner: String!, $repo: String!, $number: Int!) {
7080 repository(owner: $owner, name: $repo) {
Original file line number Diff line number Diff line change 4040 statuses : write # to update commit status checks
4141 steps :
4242 - name : Check for linked issue
43- uses : OvertureMaps/workflows/.github/actions/check-linked-issue@check-linked-issue-v1 # zizmor: ignore[unpinned-uses]
43+ uses : OvertureMaps/workflows/.github/actions/check-linked-issue@check-linked-issue-v2 # zizmor: ignore[unpinned-uses]
4444 with :
4545 privateKey : ${{ secrets.CHECK_LINKED_ISSUE_APP_PEM }}
You can’t perform that action at this time.
0 commit comments