This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
Pull Request Labeler #23677
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/ | |
name: Pull Request Labeler | |
on: | |
pull_request_target: | |
types: [opened, reopened, synchronize, converted_to_draft, ready_for_review, review_requested] | |
branches: | |
- main | |
pull_request_review: | |
types: [submitted] | |
branches: | |
- main | |
jobs: | |
pull_request_labeler: | |
runs-on: ubuntu-latest | |
if: github.actor != 'github-actions[bot]' && github.actor != 'dependabot[bot]' && github.actor != 'MickeyMoz' | |
steps: | |
- name: Pull Request Labeler | |
uses: gabrielluong/[email protected] | |
if: github.repository == 'mozilla-mobile/firefox-android' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |