File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1158,15 +1158,15 @@ jobs:
11581158 checks : read
11591159 steps :
11601160 - name : Check out current commit
1161- if : contains(needs.*.result, 'failure')
1161+ if : github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure')
11621162 uses : actions/checkout@v6
11631163 with :
11641164 sparse-checkout : |
11651165 .github
11661166 scripts
11671167
11681168 - name : Create issues for failed jobs
1169- if : contains(needs.*.result, 'failure')
1169+ if : github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure')
11701170 uses : actions/github-script@v7
11711171 with :
11721172 script : |
Original file line number Diff line number Diff line change @@ -4,11 +4,6 @@ import type { SessionContext } from '../../src/types-hoist/session';
44import { timestampInSeconds } from '../../src/utils/time' ;
55
66describe ( 'Session' , ( ) => {
7- // TEMPORARY: Guaranteed failure to verify issue creation in CI
8- it ( 'TEMPORARY - should fail to test annotation extraction' , ( ) => {
9- expect ( true ) . toBe ( false ) ;
10- } ) ;
11-
127 it ( 'initializes with the proper defaults' , ( ) => {
138 const newSession = makeSession ( ) ;
149 const session = newSession . toJSON ( ) ;
You can’t perform that action at this time.
0 commit comments