Restructure node-cli, introduce NodeMode, remove SYNC node type, add FAIR passive node support #585
Workflow file for this run
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
| name: Get linked issues | |
| on: | |
| pull_request: | |
| types: [ edited, synchronize, opened, reopened ] | |
| jobs: | |
| check-linked-issues: | |
| name: Check if pull request has linked issues | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Get issues | |
| id: get-issues | |
| uses: mondeja/pr-linked-issues-action@v2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| - name: PR has not linked issues | |
| if: join(steps.get-issues.outputs.issues) == '' | |
| run: | |
| exit 1 |