From d8e5e154a8308fe0564a7e65316003e082470e98 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sat, 25 Apr 2026 14:20:16 -0700 Subject: [PATCH] Use giteabot instead of backporter --- .github/workflows/giteabot.yml | 39 ++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/giteabot.yml diff --git a/.github/workflows/giteabot.yml b/.github/workflows/giteabot.yml new file mode 100644 index 0000000000..4c9cd03e89 --- /dev/null +++ b/.github/workflows/giteabot.yml @@ -0,0 +1,39 @@ +name: Giteabot + +on: + push: + branches: + - main + pull_request_target: + types: + - opened + - synchronize + - labeled + - unlabeled + - closed + - review_requested + - review_request_removed + pull_request_review: + types: + - submitted + - edited + - dismissed + schedule: + - cron: "15 3 * * *" + workflow_dispatch: + +permissions: + contents: read + issues: write + pull-requests: write + statuses: write + +jobs: + giteabot: + runs-on: ubuntu-latest + steps: + - name: Run Giteabot + uses: go-gitea/giteabot@v1 + with: + github_token: ${{ secrets.GITEABOT_TOKEN }} + gitea_fork: giteabot/gitea