Skip to content

Commit 23a1b6c

Browse files
committed
🔧 fix: add missing checkout steps to approval workflows
Add checkout actions to sig_approval, rfc_approval, and pipeline_proposals workflows to resolve MODULE_NOT_FOUND errors when requiring approval.js
1 parent fba134c commit 23a1b6c

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/pipeline_proposals.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
1619
- name: Handle pipeline proposal approval logic
1720
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea #v7.0.1
1821
with:

.github/workflows/rfc_approval.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
1619
- name: Handle RFC approval logic
1720
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea #v7.0.1
1821
with:

.github/workflows/sig_approval.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
1619
- name: Handle SIG approval logic
1720
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea #v7.0.1
1821
with:

0 commit comments

Comments
 (0)