Skip to content

Automatically label PRs to sync and auto-merge #1

Automatically label PRs to sync and auto-merge

Automatically label PRs to sync and auto-merge #1

Workflow file for this run

name: "Automatically mark PRs to sync"
on:
pull_request:
jobs:
labeler:
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- run: gh pr edit $PR --add-label sync
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR: ${{ github.event.number }}