Skip to content

Adding back search #687

Adding back search

Adding back search #687

Workflow file for this run

# This workflow attempts to automatically label pull requests by examining labels on linked issues.
# For instance, if a PR says it "Fixes #123", and issue #123 is labeled as a Bug, this workflow will
# automatically label the PR as a bug as well.
name: Auto-label pull requests
on:
pull_request_target:
types: [opened, synchronize, reopened, labeled, unlabeled]
permissions:
pull-requests: write
jobs:
autolabel:
uses: acquia/.github/.github/workflows/autolabel.yml@main
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}