Using censor utils in double censored observation inference #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Try this PR!" | |
on: | |
pull_request_target: | |
types: [opened] | |
jobs: | |
write-comment: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/github-script@v5 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: ` | |
## Try this Pull Request! | |
Open Julia and type: | |
\`\`\`julia | |
import Pkg | |
Pkg.activate(temp=true) | |
Pkg.add(url="https://github.com/CDCgov/Rt-without-renewal", rev="${context.payload.pull_request.head.ref}", subdir="EpiAware") | |
using EpiAware | |
\`\`\` | |
` | |
}) |