Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

build(deps): bump firebase-tools from 13.27.0 to 13.28.0 #187

build(deps): bump firebase-tools from 13.27.0 to 13.28.0

build(deps): bump firebase-tools from 13.27.0 to 13.28.0 #187

Workflow file for this run

name: Label Restyle PRs
on:
pull_request:
types: [opened]
jobs:
label:
runs-on: ubuntu-latest
steps:
- name: Label Restyle PR
uses: actions/github-script@v7
with:
script: |
const title = context.payload.pull_request.title;
const prNumber = context.payload.pull_request.number;
const repo = context.payload.repository.name;
const owner = context.payload.repository.owner.login;
if (title.startsWith('Restyle')) {
github.rest.issues.addLabels({
owner,
repo,
issue_number: prNumber,
labels: ['restyle-pr']
});
}