flowchart TD A[Inicio] --> B[Ingresar número 1] B --> C[Ingresar número 2] C --> D[Ingresar número 3] D --> E[Sumar números: suma = num1 + num2 + num3] E --> F[Multiplicar suma por 4: resultado = suma * 4] F --> G[Mostrar resultado] G --> H[Fin] #2073
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: Apply triage label to new issue | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: andymckay/[email protected] | |
with: | |
repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
add-labels: 'Status: Triage' |