1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 00:18:23 +02:00
Files
archived-php-src/.github/workflows/remove-needs-feedback.yml
T
Nikita Popov 8ba1267744 Add templates and workflows for GitHub issues
This adds the necessary templates and actions for
https://wiki.php.net/rfc/github_issues.

Closes GH-7694.
2021-12-04 16:40:18 +01:00

16 lines
391 B
YAML

name: Remove needs feedback label
on:
issue_comment:
types:
- created
jobs:
build:
if: "contains(github.event.issue.labels.*.name, 'Status: Needs Feedback') && github.event.issue.user.login == github.event.sender.login"
runs-on: ubuntu-latest
steps:
- uses: actions-ecosystem/action-remove-labels@v1
with:
labels: "Status: Needs Feedback"