Skip to content

Commit

Permalink
feat(reopen-pr): add reopen-pr helper (#646)
Browse files Browse the repository at this point in the history
Co-authored-by: Gustavo Ercoli <[email protected]>
Co-authored-by: Dan Adajian <[email protected]>
  • Loading branch information
3 people authored Aug 2, 2024
1 parent 71e544e commit 17bf664
Show file tree
Hide file tree
Showing 10 changed files with 218 additions and 8,190 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/reopen-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Reopen Pr

on:
pull_request:
branches: [main]
paths:
- 'src/helpers/reopen-pr.ts'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: ./
with:
helper: reopen-pr
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,10 @@ Additionally, the following parameters can be used for additional control over t

- Removes a PR from the merge queue if it has a stale failing status check. A PR check is considered stale if it is older than the provided number of `seconds`.

### [reopen-pr](.github/workflows/reopen-pr.yml)

- Reopens a pull request in your current repo or in another repo.

### [rerun-pr-checks](.github/workflows/rerun-pr-checks.yml)

- Reruns all of the latest workflow checks on a pull request (helpful if they were cancelled for some reason, either manually or due to rate limiting, for example).
Expand Down
Loading

0 comments on commit 17bf664

Please sign in to comment.