Remove not needed GitHub workflow for reviews (#3785)

This commit is contained in:
Krzysztof Żuraw 2023-06-23 10:16:15 +02:00 committed by GitHub
parent 61d27625c4
commit a573363f3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +0,0 @@
name: Review assignment
on:
pull_request:
types: [opened, edited]
jobs:
assign_ui:
runs-on: ubuntu-latest
name: Assign UI Reviewer
if: contains(github.event.pull_request.body , 'This code contains UI changes')
steps:
- name: Add/Remove UI reviewer
uses: jwm0/add-reviewer-gh-action@1.0.4
with:
reviewers: "pwgryglak"
token: ${{ secrets.GITHUB_TOKEN }}
remove: ${{ !contains(github.event.pull_request.body , '[x] This code contains UI changes') }}