[Actions] Add the user to all branches. Remove monojenkins. (#10368)

This commit is contained in:
Manuel de la Pena 2021-01-08 16:21:41 -05:00 коммит произвёл GitHub
Родитель 1c34588487
Коммит 031e14f1a3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

6
.github/workflows/label-checker.yml поставляемый
Просмотреть файл

@ -17,14 +17,14 @@ jobs:
- run: exit 0
name: 'Monojenkins PR'
# always happy if monojenkins
if: github.actor == 'monojenkins' || github.actor == 'vs-mobiletools-engineering-service2'
if: github.actor == 'vs-mobiletools-engineering-service2'
- run: exit 1
name: 'User PR with no labels'
# failure if not monojenkins and no labels
if: github.actor != 'monojenkins' && join(github.event.pull_request.labels, ',') == ''
if: github.actor != 'vs-mobiletools-engineering-service2' && join(github.event.pull_request.labels, ',') == ''
- run: exit 0
name: 'User PR with labels'
# success if not monojenkins but labels
if: github.actor != 'monojenkins' && join(github.event.pull_request.labels, ',') != ''
if: github.actor != 'vs-mobiletools-engineering-service2' && join(github.event.pull_request.labels, ',') != ''