Skip to content

Commit dc939a7

Browse files
committed
test
1 parent 79ca3b4 commit dc939a7

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1158,15 +1158,15 @@ jobs:
11581158
checks: read
11591159
steps:
11601160
- name: Check out current commit
1161-
if: github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure')
1161+
if: 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: github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure')
1169+
if: contains(needs.*.result, 'failure')
11701170
uses: actions/github-script@v7
11711171
with:
11721172
script: |

packages/core/test/lib/session.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ import type { SessionContext } from '../../src/types-hoist/session';
44
import { timestampInSeconds } from '../../src/utils/time';
55

66
describe('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+
712
it('initializes with the proper defaults', () => {
813
const newSession = makeSession();
914
const session = newSession.toJSON();

0 commit comments

Comments
 (0)