Update tmate testing.yml #2
This file contains 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: tmate testing | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
debug: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
with: | |
limit-access-to-actor: false | |
- name: Wait for user input | |
run: | | |
echo "Tmate session is active. Press any key to end the session." | |
read -n 1 -s |