From 57b8b98836204c9b5679885a529cf21e31c13826 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:34 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/auto-approve.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/auto-approve.yml diff --git a/.gitea/workflows/auto-approve.yml b/.gitea/workflows/auto-approve.yml new file mode 100644 index 0000000..8143c17 --- /dev/null +++ b/.gitea/workflows/auto-approve.yml @@ -0,0 +1,16 @@ +name: Auto Approve + +on: + pull_request: + +jobs: + auto-approve: + runs-on: ubuntu-latest + if: github.actor == 'dependabot[bot]' || github.actor == 'pre-commit-ci[bot]' + steps: + - name: Approve PR + uses: actions/github-actions@master + with: + event-type: pull_request + token: ${{ secrets.GITHUB_TOKEN }} + approvers: dependabot,pre-commit-ci