Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/evaluate-submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Extract GitHub repo from issue body
id: extract
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const body = context.payload.issue.body || '';
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:

- name: Post evaluation comment
if: steps.extract.outputs.repo != ''
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const fs = require('fs');
Expand All @@ -77,7 +77,7 @@ jobs:

- name: Apply label and handle outcome
if: steps.extract.outputs.repo != ''
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const rec = '${{ steps.eval.outputs.recommendation }}';
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:

- name: Post fallback comment (no repo found)
if: steps.extract.outputs.repo == ''
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.issues.createComment({
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
- name: Re-evaluate incubator issues
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { execSync } = require('child_process');
Expand Down