From 334ff9cf59a0380268b8a839fa068fabd6bab7f5 Mon Sep 17 00:00:00 2001 From: Nikita Korolev <141920865+universal-itengineer@users.noreply.github.com> Date: Fri, 22 Nov 2024 10:30:43 +0300 Subject: [PATCH] add test workflow (#28) Signed-off-by: Nikita Korolev --- .github/workflows/echo.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/echo.yaml diff --git a/.github/workflows/echo.yaml b/.github/workflows/echo.yaml new file mode 100644 index 0000000..4e9abe0 --- /dev/null +++ b/.github/workflows/echo.yaml @@ -0,0 +1,22 @@ +name: Echo + +on: + pull_request: + types: [opened, reopened, synchronize, labeled, unlabeled] + branches: + - main + push: + branches: + - main + tags: + - "v[0-9]+.[0-9]+.[0-9]+" + +jobs: + check_pr_closure: + runs-on: ubuntu-latest + name: Echo + steps: + - name: Show gh ref + run: | + - echo ${{ github.ref_name }}" + \ No newline at end of file