From 737d334f692a769fb2ce69ec8191bed4ff296623 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Wed, 4 Sep 2024 18:41:54 +0200 Subject: [PATCH] format the dummy action --- .github/workflows/debug.yaml | 22 ++++++++++++++++++++++ .github/workflows/main.yaml | 21 --------------------- 2 files changed, 22 insertions(+), 21 deletions(-) create mode 100644 .github/workflows/debug.yaml delete mode 100644 .github/workflows/main.yaml 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