Skip to content

Commit

Permalink
Merge pull request #163 from cmu-delphi/ds/test
Browse files Browse the repository at this point in the history
test
  • Loading branch information
dshemetov authored Sep 1, 2023
2 parents ab3a64f + afca88a commit 0eb1d73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-commands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: Commands

jobs:
document:
if: ${{ github.event.issue.pull_request && (contains(github.event.comment.author_association, 'MEMBER') || contains(github.event.comment.author_association, 'OWNER')) && startsWith(github.event.comment.body, '/document') }}
if: ${{ github.event.issue.pull_request && (contains(github.event.comment.author_association, 'MEMBER') || contains(github.event.comment.author_association, 'OWNER') || contains(github.event.comment.author_association, 'COLLABORATOR')) && startsWith(github.event.comment.body, '/document') }}
name: document
runs-on: ubuntu-latest
env:
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}

style:
if: ${{ github.event.issue.pull_request && (contains(github.event.comment.author_association, 'MEMBER') || contains(github.event.comment.author_association, 'OWNER')) && startsWith(github.event.comment.body, '/document') }}
if: ${{ github.event.issue.pull_request && (contains(github.event.comment.author_association, 'MEMBER') || contains(github.event.comment.author_association, 'OWNER') || contains(github.event.comment.author_association, 'COLLABORATOR')) && startsWith(github.event.comment.body, '/document') }}
name: style
runs-on: ubuntu-latest
env:
Expand Down
2 changes: 1 addition & 1 deletion R/auth.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
get_auth_key <- function() {
key <- Sys.getenv("DELPHI_EPIDATA_KEY", unset = "")
if (key != "") {
return(key)
return(key)

Check warning on line 13 in R/auth.R

View workflow job for this annotation

GitHub Actions / lint

file=R/auth.R,line=13,col=12,[indentation_linter] Indentation should be 4 spaces but is 12 spaces.
}

key <- getOption("delphi.epidata.key", default = "")
Expand Down

0 comments on commit 0eb1d73

Please sign in to comment.