Skip to content

Commit

Permalink
conclusion: skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
suztomo committed Jan 3, 2025
1 parent 913afc1 commit 34dfe94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/owl-bot/src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export interface CheckArgs {
pr: number;
repo: string;
summary: string;
conclusion: 'success' | 'failure';
conclusion: 'success' | 'failure' | 'skipped';
detailsURL: string;
text: string;
title: string;
Expand Down
2 changes: 1 addition & 1 deletion packages/owl-bot/src/owl-bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ const runPostProcessor = async (
text: 'Ignored by Owl Bot because the pull request was created from a fork. See go/owlbot-skip-forks.',
summary:
'Ignored by Owl Bot because the pull request was created from a fork',
conclusion: 'success',
conclusion: 'skipped',
title: '🦉 OwlBot - skipped this pull request from a fork',
});
return;
Expand Down
2 changes: 1 addition & 1 deletion packages/owl-bot/test/owl-bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ describe('OwlBot', () => {
sandbox.assert.notCalled(triggerBuildStub);
sandbox.assert.calledWith(
createCheckStub,
sinon.match.has('conclusion', 'success')
sinon.match.has('conclusion', 'skipped')
);
sandbox.assert.calledWith(
createCheckStub,
Expand Down

0 comments on commit 34dfe94

Please sign in to comment.