Skip to content

Workflow file for this run

name: 'Check Branch'
on:
pull_request:
types: [opened, synchronize, reopened, labeled]
jobs:
check_branch:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'docker')
steps:
- name: Check Refs
run: |
echo "Base Repo: ${{ github.event.pull_request.base.repo.full_name }}"
echo "Base Ref: ${{ github.base_ref }}"
echo "Head Repo: ${{ github.event.pull_request.head.repo.full_name }}"
echo "Head Ref: ${{ github.head_ref }}"