mirror of
https://github.com/php/php-src.git
synced 2026-04-24 00:18:23 +02:00
8ba1267744
This adds the necessary templates and actions for https://wiki.php.net/rfc/github_issues. Closes GH-7694.
16 lines
391 B
YAML
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"
|