Skip to content

#1017: Implemented a GH workflow(s) which validates correct target branch of PR #3

#1017: Implemented a GH workflow(s) which validates correct target branch of PR

#1017: Implemented a GH workflow(s) which validates correct target branch of PR #3

Workflow file for this run

name: Validate PR
on:
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Show Source Branch
run: echo ${{github.head_ref}}
- name: Show Target Branch
run: echo ${{github.base_ref}}