diff --git a/.github/workflows/pr-issue-check.yml b/.github/workflows/pr-issue-check.yml new file mode 100644 index 0000000000..a560a713a7 --- /dev/null +++ b/.github/workflows/pr-issue-check.yml @@ -0,0 +1,16 @@ +on: + pull_request_target: + types: [opened, edited, reopened, synchronize] + +jobs: + check_pull_requests: + runs-on: ubuntu-latest + name: Check linked issues + steps: + - uses: nearform/github-action-check-linked-issues@v1 + id: check-linked-issues + with: + exclude-branches: "dependabot/**" + # OPTIONAL: Use the output from the `check-linked-issues` step + #- name: Get the output + # run: echo "How many linked issues? ${{ steps.check-linked-issues.outputs.linked_issues_count }}" \ No newline at end of file