diff --git a/.github/workflows/issue_parser.yaml b/.github/workflows/issue_parser.yaml deleted file mode 100644 index 4ffe81f..0000000 --- a/.github/workflows/issue_parser.yaml +++ /dev/null @@ -1,19 +0,0 @@ -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 }}" diff --git a/.github/workflows/linked_issues.yaml b/.github/workflows/linked_issues.yaml new file mode 100644 index 0000000..1365ebe --- /dev/null +++ b/.github/workflows/linked_issues.yaml @@ -0,0 +1,15 @@ +on: [push] + +jobs: + linked_issues: + runs-on: ubuntu-latest + name: A job to say hello + steps: + - name: Hello world action step + id: hello + uses: hossainemruz/linked-issues@v0.0.1 + with: + who-to-greet: 'Mona the Octocat' + # Use the output from the `hello` step + - name: Get the output time + run: echo "The time was ${{ steps.hello.outputs.time }}"