Skip to content

Commit 7ca51b5

Browse files
authored
Merge pull request #102 from 1Password/andi_t/fix-github-script
Fix syntax error in github script
2 parents bc58872 + b4666cd commit 7ca51b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
script: |
113113
const { data: checks } = await github.rest.checks.listForRef({
114114
...context.repo,
115-
process.env.ref
115+
ref: process.env.ref
116116
});
117117
118118
const check = checks.check_runs.filter(c => c.name === process.env.job);

0 commit comments

Comments
 (0)