manual trigger testing or with issue #1
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
| name: manual trigger testing or with issue | |
| on: | |
| issues: | |
| workflow_dispatch: | |
| inputs: | |
| name: | |
| description: Enter your name | |
| type: string | |
| required: true | |
| file: | |
| description: Enter file name | |
| type: string | |
| required: false | |
| jobs: | |
| my_hjob1: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: print | |
| run: | | |
| echo "manual trigger by {{ inputs.name }}" | |
| cat {{ inputs.file }} | |