Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rscohn2 committed Jun 13, 2024
1 parent bd9eb26 commit a8db394
Show file tree
Hide file tree
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
Expand Up @@ -25,8 +25,8 @@ async function prFiles(github, context) {
return prFiles;
}

module.exports = async ({github, context}) => {
const domain = "blas";
module.exports = async ({github, context, domain}) => {
//const domain = "blas";
const files = await prFiles(github, context);
const match = matchesPattern(domain, files);
console.log("domain: ", domain, " Match: ", match);
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
with:
script: |
const domainCheck = require('.github/scripts/domain-check.js')
return domainCheck({github, context})
return domainCheck({github, context, "${{ matrix.domain}}"})
- name: Restore netlib from cache
id: cache-lapack
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
Expand Down

0 comments on commit a8db394

Please sign in to comment.