Skip to content

Commit

Permalink
Temp: Automatically label PRs with "port to doc6"
Browse files Browse the repository at this point in the history
  • Loading branch information
pwizla authored Jan 16, 2025
1 parent 98d9fba commit 8e24a0b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/auto-label-doc6.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Auto Label PRs
on:
pull_request:
types:
- opened

jobs:
auto-label:
runs-on: ubuntu-latest
permissions:
pull-requests: write

steps:
- name: Add label to PR
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ['temp: port to doc6']
});

0 comments on commit 8e24a0b

Please sign in to comment.