We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b87084f commit 5f404cfCopy full SHA for 5f404cf
source/dsl/BitBucketCloudDSL.ts
@@ -35,10 +35,10 @@ export interface BitBucketCloudPRDSL {
35
description: string
36
/** The pull request's current status. */
37
state: "OPEN" | "MERGED" | "DECLINED" | "SUPERSEDED"
38
- /** Date PR created as number of milliseconds since the unix epoch */
39
- created_on: number
40
- /** Date PR updated as number of milliseconds since the unix epoch */
41
- updated_on: number
+ /** When the pr was created, in ISO 8601 format */
+ created_on: string
+ /** When the pr was updated, in ISO 8601 format */
+ updated_on: string
42
/** The PR's source, The repo Danger is running on */
43
source: BitBucketCloudMergeRef
44
/** The PR's destination */
0 commit comments