mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-23 05:13:00 -05:00
22 lines
719 B
YAML
22 lines
719 B
YAML
name: Check for performance_approved label
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'go/**'
|
|
branches: [main]
|
|
types: [opened, labeled, unlabeled, synchronize]
|
|
jobs:
|
|
label:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: mheap/github-action-required-labels@v5
|
|
with:
|
|
mode: exactly
|
|
count: 1
|
|
labels: "performance_approved"
|
|
add_comment: true
|
|
message: "<!-- go-run-output -->\nThis PR is being tested for performance. Please allow ~25 mins for this to complete. If this PR does not result in a performance regression, the `performance_approved` label will be automatically added to this PR."
|