Skip to content

additional check before create issue for failed cherrypick #1

additional check before create issue for failed cherrypick

additional check before create issue for failed cherrypick #1

Workflow file for this run

# CI stages to execute against Pull Requests
name: Search GH PR's based on title
on:
pull_request:
types: ["opened", "synchronize", "reopened"]
jobs:
search_for_pr:
runs-on: ubuntu-latest
steps:
- name: Find Pull Request
uses: juliangruber/find-pull-request-action@v1
id: find-pull-request
with:
branch: omkarkhatavkar-patch-8
- run: echo "Pull Request title ${number} ${title} (${sha})"
env:
number: ${{ steps.find-pull-request.outputs.number }}
sha: ${{ steps.find-pull-request.outputs.head-sha }}