build(deps): bump depends-on/depends-on-action from 61cb3f4a0e2c8ae4b90c9448dc57c7ba9ca24c35 to 826c144163ac67bf08347590a5f81afd45da63ca #937
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: Apache-2.0 | |
| --- | |
| name: Pull Request | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| check-all-dependencies-are-merged: | |
| name: "Check all dependencies are merged" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check all dependent Pull Requests are merged | |
| uses: depends-on/depends-on-action@826c144163ac67bf08347590a5f81afd45da63ca # main | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| check-unmerged-pr: true | |
| ... |