Skip to content

Bump org.mockito:mockito-core from 5.11.0 to 5.12.0 #46

Bump org.mockito:mockito-core from 5.11.0 to 5.12.0

Bump org.mockito:mockito-core from 5.11.0 to 5.12.0 #46

name: Pull Request Open
on:
pull_request_target:
branches:
- 4.6.x
- main
types:
- opened
- reopened
jobs:
updateJira:
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: main
repository: infinispan/infinispan
- name: Extract Jira Key
run: echo ISSUE_KEY=$(echo "${{ github.event.pull_request.title }}" | grep -oP 'IPROTO-(?P<id>[0-9]+)') >> $GITHUB_ENV
- run: echo ${{ env.ISSUE_KEY }}
- run: echo "$ISSUE_KEY"
- name: Link Pull Request
if: ${{ env.ISSUE_KEY != '' }}
run: ./bin/jira/add_pull_request.sh
env:
ISSUE_KEY: ${{ env.ISSUE_KEY }}
PULL_REQUEST: ${{ github.event.pull_request.html_url }}
TOKEN: ${{ secrets.JIRA_API_TOKEN }}
- name: Transition Issue to Code Review
if: ${{ env.ISSUE_KEY != '' }}
run: ./bin/jira/transition.sh
env:
ISSUE_KEY: ${{ env.ISSUE_KEY }}
TOKEN: ${{ secrets.JIRA_API_TOKEN }}
TRANSITION: Code Review