Part of https://github.com/flutter/flutter/issues/126002 Migrate the [Cocoon logic for labelling](https://cs.opensource.google/flutter/cocoon/+/main:app_dart/lib/src/request_handlers/github/webhook_subscription.dart;l=352) directly into the repo under test
21 lines
587 B
YAML
21 lines
587 B
YAML
# Copyright 2013 The Flutter Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
name: "Pull Request Labeler"
|
|
on:
|
|
- pull_request_target
|
|
|
|
# Declare default permissions as read only.
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
triage:
|
|
if: ${{ github.repository == 'flutter/flutter' }}
|
|
permissions:
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Source available at https://github.com/actions/labeler/blob/main/README.md
|
|
- uses: actions/labeler@9471598e3b7ff22b2fa181bd79addf94cb3e0847
|