diff --git a/.github/workflows/debug.yaml b/.github/workflows/debug.yaml new file mode 100644 index 0000000..1c8d384 --- /dev/null +++ b/.github/workflows/debug.yaml @@ -0,0 +1,22 @@ +# This action is for playing around with GHA and has no use outside of that. +name: main + +on: + workflow_dispatch: + push: + branches: + - master + +jobs: + tail_and_check: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Start tailing file + run: tail -f /etc/issue >/dev/null 2>&1 & + + - name: Print processes + run: ps aux diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml deleted file mode 100644 index a2fcc85..0000000 --- a/.github/workflows/main.yaml +++ /dev/null @@ -1,21 +0,0 @@ -name: main - -on: - workflow_dispatch: - push: - branches: - - master - -jobs: - tail_and_check: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Start tailing file - run: tail -f /etc/issue >/dev/null 2>&1 & - - - name: Print processes - run: ps aux