Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 632 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 632 Bytes

Checking tickboxes on cross-references to closed PRs

If a PR references another inside a checkbox, this action aims to automatically close that checkbox, if the referenced PR is closed.

Example use:

   name: Cross-Ref
   on:
     pull_request:
       types: [closed]
   jobs:
     build:
       runs-on: ubuntu-latest
       steps:
         - name: Checks checboxes that cross-referenced the closed/merged PR
           uses: egebeysel/[email protected]
           with:
            # Token preferrably as secret, as this is visible if your repository is public.
             token: <YOUR_TOKEN>