mirror of
https://github.com/actions/stale.git
synced 2025-12-29 20:37:30 +08:00
6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
|
|
import {Issue} from '../IssueProcessor';
|
||
|
|
|
||
|
|
export function isPullRequest(issue: Readonly<Issue>): boolean {
|
||
|
|
return !!issue.pull_request;
|
||
|
|
}
|