Skip to content

Add GitHub Actions workflow to dump event context #15

Add GitHub Actions workflow to dump event context

Add GitHub Actions workflow to dump event context #15

Workflow file for this run

name: Get branch name
on:
push:
branches:
- develop
- main
jobs:
get-branch:
runs-on: ubuntu-latest
env:
BRANCH_NAME: ${{ github.ref_name }}
steps:
- name: print-branch
run: echo "Branch name - $BRANCH_NAME"