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: Secret - Set | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| secret-name: | |
| description: 'Secret Name' | |
| default: 'MY_SECRET' | |
| required: true | |
| secret-value: |
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: Gist - Create | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| repository: | |
| description: 'The GitHub Repository' | |
| required: true | |
| default: 'danilocolombi/github-automation' | |
| file-name: |
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
| console.log("Hello, World!"); |
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: 'Delete Repo' | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| repo-name: | |
| description: 'Name of the repo' | |
| default: '' | |
| required: true | |
| jobs: |
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: 'Create Repo' | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| repo-name: | |
| description: 'Name of the Repo' | |
| default: '' | |
| required: true |