# action-get-dependent-pr **Repository Path**: mirrors_getsentry/action-get-dependent-pr ## Basic Information - **Project Name**: action-get-dependent-pr - **Description**: GitHub Action to find cross referenced PRs - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-29 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Get Dependent Pull Request This GitHub Action will parse the body of a PR to retrieve a linked PR. if you have two repos `foo/bar` and `foo/baz`, where a PR in `foo/bar` depends on `foo/baz`: In `foo/bar` you have a PR #1, with a description that includes ``` Requires https://github.com/foo/baz/pull/123 ``` Which will provide your workflow in `foo/bar` with the PR object of `foo/baz/pull/123` as well as the SHA ## Using TODO ### Inputs TODO ### Outputs TODO ## Developing Install the dependencies ```bash $ yarn install ``` Build the typescript and package it for distribution ```bash $ yarn dist ``` Run the tests :heavy_check_mark: ```bash $ yarn test PASS ./index.test.js ✓ throws invalid number (3ms) ✓ wait 500 ms (504ms) ✓ test runs (95ms) ... ```