[Bug]: No me deja iniciar análisis con la modalidad de fiabilidad #1194
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
# if no file is uploaded, create a comment | |
name: First Response | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
First-response: | |
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}); | |