Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
rscohn2 committed Jun 13, 2024
1 parent d5a9e31 commit d736264
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/domain-check.js
Original file line number Diff line number Diff line change
@@ -23,8 +23,8 @@ function prFiles(github, context) {
console.log("PR files: ", prFiles)
return prFiles
}
module.exports = ({context}) => {
return context.payload.client_payload.value
module.exports = ({github, context}) => {
return context.repo.owner;
}
/*
module.exports = ({github, context}) => {
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ jobs:
with:
script: |
const domainCheck = require('.github/scripts/domain-check.js')
return domainCheck({context})
return domainCheck({github, context})
- name: Restore netlib from cache
id: cache-lapack
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2

0 comments on commit d736264

Please sign in to comment.