[Bug]: i try to open my latest file with all my analysis saved but jasp is not responding and it's not opening the latest file. #294
This file contains hidden or 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
# if no file is uploaded, create a comment | |
name: First Response | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
First-response-bug: | |
runs-on: ubuntu-latest | |
if: ${{ contains(github.event.issue.labels.*.name, 'Bug') }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
const script = require('./.github/scripts/bug_firstResponse.js'); | |
script({github, context}); | |
First-response-crash: | |
runs-on: ubuntu-latest | |
if: ${{ contains(github.event.issue.labels.*.name, 'Crash') }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
const script = require('./.github/scripts/crash_firstResponse.js'); | |
script({github, context}); |