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