Skip to content

build(deps): bump newrelic from 11.22.0 to 12.5.1 #28

build(deps): bump newrelic from 11.22.0 to 12.5.1

build(deps): bump newrelic from 11.22.0 to 12.5.1 #28

name: Check Linked Issue on PR
on:
pull_request:
types: [opened, edited]
branches:
- "develop"
jobs:
Check-For-Linked-Issue:
runs-on: ubuntu-latest
if: ${{ github.event.action == 'opened' || github.event.action == 'edited' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check for keyword and issue number
id: check-for-keyword
uses: actions/github-script@v7
with:
script: |
const script = require('./scripts/github-actions/checkPRLinkedIssue.js')
script({g: github, c: context})