Add issue parser workflow
This commit is contained in:
parent
cac27fc8c4
commit
8dbe04b95d
1 changed files with 19 additions and 0 deletions
19
.github/workflows/issue_parser.yaml
vendored
Normal file
19
.github/workflows/issue_parser.yaml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
on:
|
||||
issue_comment:
|
||||
types: [created, edited]
|
||||
|
||||
jobs:
|
||||
parse-comment:
|
||||
runs-on: ubuntu-latest
|
||||
name: Parse Comment
|
||||
steps:
|
||||
- name: Issue Refs Parser Action
|
||||
uses: FujiHaruka/issue-refs-parser-action@v1.1
|
||||
id: action
|
||||
with:
|
||||
body: ${{ github.event.comment.body }}
|
||||
self_slug: hugo-toha/toha
|
||||
- name: Get The Outputs
|
||||
run: |
|
||||
echo "refs: ${{ steps.action.outputs.refs }}"
|
||||
echo "external_refs: ${{ steps.action.outputs.external_refs }}"
|
Loading…
Add table
Add a link
Reference in a new issue