issue_parser.yaml 523 B

12345678910111213141516171819
  1. on:
  2. issue_comment:
  3. types: [created, edited]
  4. jobs:
  5. parse-comment:
  6. runs-on: ubuntu-latest
  7. name: Parse Comment
  8. steps:
  9. - name: Issue Refs Parser Action
  10. uses: FujiHaruka/issue-refs-parser-action@v1.1
  11. id: action
  12. with:
  13. body: ${{ github.event.comment.body }}
  14. self_slug: hugo-toha/toha
  15. - name: Get The Outputs
  16. run: |
  17. echo "refs: ${{ steps.action.outputs.refs }}"
  18. echo "external_refs: ${{ steps.action.outputs.external_refs }}"