Skip to content

Classify GraphQL repo not-found in resolveRepository (#5559) #873

Classify GraphQL repo not-found in resolveRepository (#5559)

Classify GraphQL repo not-found in resolveRepository (#5559) #873

name: Merge Mate Review
on:
issue_comment:
types: [created]
workflow_dispatch:
inputs:
pr-number:
description: 'PR number to process'
required: true
type: number
action:
description: 'Action to perform'
required: true
type: choice
options:
- apply
- undo
trigger-mode:
description: 'Trigger source'
required: false
default: workflow_dispatch
type: string
permissions:
contents: write
pull-requests: write
issues: write
id-token: write
concurrency:
group: merge-mate-review-${{ github.event.issue.number || inputs.pr-number }}
cancel-in-progress: false
jobs:
review:
if: >
github.event_name == 'workflow_dispatch' ||
(
github.event.issue.pull_request &&
github.event.sender.type != 'Bot' &&
contains(fromJSON('["eamodio", "d13", "ramin-t", "sergeibbb", "justinrobots", "ianhattendorf"]'), github.event.sender.login)
)
runs-on: ubuntu-latest
steps:
- uses: gitkraken/merge-mate-action/review@v0.3.0
with:
pr-number: ${{ github.event.issue.number || inputs.pr-number }}
action: ${{ inputs.action }}
trigger-mode: ${{ inputs.trigger-mode }}