Skip to content

Commit

Permalink
Merge pull request #56357 from Expensify/Rory-DontCreateIssuesForConf…
Browse files Browse the repository at this point in the history
…irmPassingBuild
  • Loading branch information
blimpich authored Feb 4, 2025
2 parents b90c4c6 + 07e6a5c commit b32cbd7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/failureNotifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
repo: context.repo.repo,
run_id: runId,
});
return jobsData.data;
const jobNamesToIgnore = ['confirmPassingBuild'];
return jobsData.data.filter(job => !jobNamesToIgnore.includes(job.name));
- name: Fetch Previous Workflow Run
id: previous-workflow-run
Expand Down

0 comments on commit b32cbd7

Please sign in to comment.