Trap Ctrl-C in the REPL: if no command is running clear the prompt, if some command is running ask for confirmation before exiting #23198
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: Scala CLA | |
| on: | |
| pull_request: | |
| branches-ignore: | |
| - 'language-reference-stable' | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.user.login != 'dependabot' | |
| steps: | |
| - name: Verify CLA | |
| uses: scala/cla-checker@v1 | |
| with: | |
| author: ${{ github.event.pull_request.user.login }} |