Skip to content

Commit

Permalink
add test workflow (#28)
Browse files Browse the repository at this point in the history
Signed-off-by: Nikita Korolev <[email protected]>
  • Loading branch information
universal-itengineer committed Nov 22, 2024
1 parent be0cc32 commit 2742b86
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/echo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Echo

on:
workflow_dispatch:
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 }}
# if tag: echo v2.0.11 < -

0 comments on commit 2742b86

Please sign in to comment.