mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
cbad79fa86
Using BUGGIEBOT_TOKEN doesn't work in all cases for unknown reasons. See also: https://github.com/actions/github-script#using-a-separate-github-token
25 lines
904 B
YAML
25 lines
904 B
YAML
name: Pull request labeler
|
|
|
|
# FIXME: Consider adding the `issue_comment` event to change labels based on generic, non-review pull request comments.
|
|
# Consider the trade off of how spammy it can be (one CI run per comment) and how useful it would be to have.
|
|
# Consider alternatives to `issue_comment`.
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, reopened, converted_to_draft, ready_for_review, synchronize, edited, review_requested, closed]
|
|
pull_request_review:
|
|
types: [submitted, edited, dismissed]
|
|
|
|
jobs:
|
|
label_pull_request:
|
|
runs-on: ubuntu-22.04
|
|
if: always() && github.repository == 'SerenityOS/serenity'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Label pull request
|
|
uses: actions/github-script@v6
|
|
with:
|
|
script: |
|
|
const script = require('./Meta/label-pull-requests.js')
|
|
script({github, context})
|