We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04e758a commit 737d334Copy full SHA for 737d334
.github/workflows/debug.yaml
@@ -0,0 +1,22 @@
1
+# This action is for playing around with GHA and has no use outside of that.
2
+name: main
3
+
4
+on:
5
+ workflow_dispatch:
6
+ push:
7
+ branches:
8
+ - master
9
10
+jobs:
11
+ tail_and_check:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
18
+ - name: Start tailing file
19
+ run: tail -f /etc/issue >/dev/null 2>&1 &
20
21
+ - name: Print processes
22
+ run: ps aux
.github/workflows/main.yaml
0 commit comments