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
+33
View File
@@ -0,0 +1,33 @@
name: Duplicate PRs
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
defaults:
run:
shell: bash
permissions: {}
jobs:
duplicate-prs:
if: github.repository == 'mlflow/mlflow'
runs-on: ubuntu-slim
permissions:
issues: write
pull-requests: write
timeout-minutes: 10
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
sparse-checkout: |
.github
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
retries: 3
script: |
const script = require(".github/workflows/duplicate-prs.js");
await script({ context, github });