Error al editar gráficos compuestos (Capacidad de Proceso y Gráfico de Probabilidad) en JASP 0.19.3: 'Este gráfico no se puede editar porque consta de varias figuras más pequeñas' #15
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}); |