Skip to content

Commit fc41dce

Browse files
committed
Add checkout step
1 parent 75d8ab7 commit fc41dce

File tree

7 files changed

+19
-3
lines changed

7 files changed

+19
-3
lines changed

.github/workflows/process-issue-closed.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ jobs:
2020
contains(github.event.issue.labels.*.name, 'provisioned')
2121
2222
steps:
23+
- name: Checkout
24+
id: checkout
25+
uses: actions/checkout@v4
26+
2327
- name: Get GitHub App Token
2428
id: token
2529
uses: actions/create-github-app-token@v1

.github/workflows/process-issue-comment.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ jobs:
2727
contains(github.event.issue.labels.*.name, 'provisioned')
2828
2929
steps:
30+
- name: Checkout
31+
id: checkout
32+
uses: actions/checkout@v4
33+
3034
- name: Get GitHub App Token
3135
id: token
3236
uses: actions/create-github-app-token@v1

.github/workflows/process-issue-expiration.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20+
- name: Checkout
21+
id: checkout
22+
uses: actions/checkout@v4
23+
2024
- name: Get GitHub App Token
2125
id: token
2226
uses: actions/create-github-app-token@v1

.github/workflows/process-issue.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ jobs:
1919
if: contains(github.event.issue.labels.*.name, 'gh-intermediate-class')
2020

2121
steps:
22+
- name: Checkout
23+
id: checkout
24+
uses: actions/checkout@v4
25+
2226
- name: Get GitHub App Token
2327
id: token
2428
uses: actions/create-github-app-token@v1

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/github/repos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ export async function configureLab3(
277277
// Get the file contents.
278278
const filename = `keyboard_input_manager.test.${i}`
279279
const contents = fs.readFileSync(
280-
`../../lab-files/3-git-bisect/${filename}`,
280+
`${process.env.GITHUB_WORKSPACE}/lab-files/3-git-bisect/${filename}`,
281281
'utf8'
282282
)
283283

0 commit comments

Comments
 (0)