chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:22:34 +08:00
commit 4b22cfda96
9037 changed files with 2363717 additions and 0 deletions
@@ -0,0 +1,28 @@
name: Autoformat Label Notification
on:
pull_request_target:
types:
- labeled
defaults:
run:
shell: bash
permissions: {}
jobs:
notify:
runs-on: ubuntu-slim
if: github.event.label.name == 'autoformat'
timeout-minutes: 5
permissions:
pull-requests: write # to post a comment on the PR
steps:
- env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR: ${{ github.event.pull_request.number }}
REPO: ${{ github.repository }}
run: |
gh pr comment "$PR" --repo "$REPO" --body 'Please use `/autoformat` command instead of labels.'
gh pr edit "$PR" --repo "$REPO" --remove-label autoformat