File tree Expand file tree Collapse file tree 3 files changed +1
-8
lines changed Expand file tree Collapse file tree 3 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ export const NUM_MINUTES = 30;
26
26
export const REPO : string = "pytorch" ;
27
27
export const OWNER : string = "pytorch" ;
28
28
export const DRCI_COMMENT_START = "<!-- drci-comment-start -->\n" ;
29
- export const OH_URL =
30
- "https://github.com/pytorch/pytorch/wiki/Dev-Infra-Office-Hours" ;
31
29
export const DOCS_URL = "https://docs-preview.pytorch.org" ;
32
30
export const PYTHON_DOCS_PATH = "index.html" ;
33
31
export const CPP_DOCS_PATH = "cppdocs/index.html" ;
@@ -82,7 +80,7 @@ export function formDrciHeader(
82
80
### :test_tube: See artifacts and rendered test results at [hud.pytorch.org/pr/${ prNum } ](${ HUD_URL } /pr/${ prNum } )
83
81
* :page_facing_up: Preview [Python docs built from this PR](${ DOCS_URL } /${ owner } /${ repo } /${ prNum } /${ PYTHON_DOCS_PATH } )
84
82
* :page_facing_up: Preview [C++ docs built from this PR](${ DOCS_URL } /${ owner } /${ repo } /${ prNum } /${ CPP_DOCS_PATH } )
85
- * :question: Need help or want to give feedback on the CI? Visit the [bot commands wiki](${ BOT_COMMANDS_WIKI_URL } ) or our [office hours]( ${ OH_URL } )
83
+ * :question: Need help or want to give feedback on the CI? Visit the [bot commands wiki](${ BOT_COMMANDS_WIKI_URL } )
86
84
87
85
Note: Links to docs will display an error until the docs builds have been completed.` ;
88
86
}
Original file line number Diff line number Diff line change 8
8
formDrciSevBody ,
9
9
getActiveSEVs ,
10
10
HUD_URL ,
11
- OH_URL ,
12
11
} from "lib/drciUtils" ;
13
12
import * as fetchPR from "lib/fetchPR" ;
14
13
import * as fetchRecentWorkflows from "lib/fetchRecentWorkflows" ;
@@ -395,7 +394,6 @@ describe("Update Dr. CI Bot Unit Tests", () => {
395
394
expect (
396
395
comment . includes ( "Need help or want to give feedback on the CI?" )
397
396
) . toBeTruthy ( ) ;
398
- expect ( comment . includes ( OH_URL ) ) . toBeTruthy ( ) ;
399
397
expect ( comment . includes ( DOCS_URL ) ) . toBeTruthy ( ) ;
400
398
} ) ;
401
399
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ describe("verify-drci-functionality", () => {
71
71
expect (
72
72
comment . includes ( "Need help or want to give feedback on the CI?" )
73
73
) . toBeTruthy ( ) ;
74
- expect ( comment . includes ( drciUtils . OH_URL ) ) . toBeTruthy ( ) ;
75
74
expect ( comment . includes ( drciUtils . DOCS_URL ) ) . toBeTruthy ( ) ;
76
75
return true ;
77
76
} )
@@ -119,7 +118,6 @@ describe("verify-drci-functionality", () => {
119
118
expect (
120
119
comment . includes ( "Need help or want to give feedback on the CI?" )
121
120
) . toBeTruthy ( ) ;
122
- expect ( comment . includes ( drciUtils . OH_URL ) ) . toBeTruthy ( ) ;
123
121
expect ( comment . includes ( drciUtils . DOCS_URL ) ) . toBeTruthy ( ) ;
124
122
return true ;
125
123
}
@@ -252,7 +250,6 @@ describe("verify-drci-functionality", () => {
252
250
expect (
253
251
comment . includes ( "Need help or want to give feedback on the CI?" )
254
252
) . toBeTruthy ( ) ;
255
- expect ( comment . includes ( drciUtils . OH_URL ) ) . toBeTruthy ( ) ;
256
253
expect ( comment . includes ( drciUtils . DOCS_URL ) ) . toBeTruthy ( ) ;
257
254
return true ;
258
255
}
You can’t perform that action at this time.
0 commit comments