/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/remove-needs-feedback.yml
24 строки
632 B
Ilija Tovilo
Adjust nightly org restriction check
21 апр 2024, 03:13
Не верифицирован
21 апр 2024, 03:13
c3b07a6
Код
Авторство
О чём код?
name: Remove needs feedback label on: issue_comment: types: - created permissions: contents: read jobs: build: if: "github.repository == 'php/php-src' && contains(github.event.issue.labels.*.name, 'Status: Needs Feedback') && github.event.issue.user.login == github.event.sender.login" runs-on: ubuntu-latest permissions: issues: write pull-requests: write steps: - uses: actions-ecosystem/action-remove-labels@v1 with: labels: "Status: Needs Feedback" - uses: actions-ecosystem/action-add-labels@v1 with: labels: "Status: Needs Triage"