💼 Administración de Issues #145
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: 💼 Administración de Issues | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 11 * * *' # Cada día a las 11:00 | |
jobs: | |
MomoBot: | |
name: 🤖 MomoBot | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ['javascript'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Administración de Issues | |
uses: totallynotdavid/Issue-Manager-Action@v3.7.3 | |
with: | |
org: 'caefisica' | |
repo: 'web' | |
branch: 'master' | |
templateName: 'plantilla_de_cursos.yml' | |
issuePrefix: '[📚]:' | |
gifURL: 'https://media.tenor.com/t8ZbssN1A9kAAAAd/momo-twice.gif' | |
useGif: 'true' | |
env: | |
ISSUE_TOKEN: ${{ secrets.ISSUE_TOKEN }} |