Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skjnldsv/parse-command-comment
https://github.com/skjnldsv/parse-command-comment
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/skjnldsv/parse-command-comment
- Owner: skjnldsv
- License: mit
- Created: 2021-08-03T07:02:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-20T15:19:31.000Z (7 months ago)
- Last Synced: 2024-10-26T10:43:48.513Z (about 2 months ago)
- Language: TypeScript
- Size: 800 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Extract comment command arguments
Extract the command arguments from the workflow comment event body
## Example workflow```yml
name: Get command argumentson:
issue_comment:
types: [created]jobs:
test:
runs-on: ubuntu-lateststeps:
- name: Parse command
uses: skjnldsv/parse-command-comment@v2
id: command
# steps.command.outputs.arg1
# steps.command.outputs.arg2
# steps.command.outputs.arg3
# steps.command.outputs.arg...
```