Skip to content

Commit

Permalink
Create test2.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Omkar Khatavkar authored Jan 22, 2024
1 parent 23a1079 commit 6814e41
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

# 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 }}

0 comments on commit 6814e41

Please sign in to comment.