From be37734851d3406847486109121b6c07d7a1dc9e Mon Sep 17 00:00:00 2001 From: Aidan Date: Thu, 27 Mar 2025 22:42:52 -0400 Subject: [PATCH] ci: dont auto-bump anymore --- .github/workflows/bump.yml | 42 -------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/bump.yml diff --git a/.github/workflows/bump.yml b/.github/workflows/bump.yml deleted file mode 100644 index 1a5b3ca..0000000 --- a/.github/workflows/bump.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Bump Dependencies - -on: - push: - branches: - - main - schedule: - - cron: "0 0 * * *" - - cron: "0 12 * * *" - -jobs: - update-dependencies: - runs-on: ubuntu-latest - - steps: - - name: Checkout Repo - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Setup Bun - uses: oven-sh/setup-bun@v2 - - - name: Install Dependencies - run: bun install - - - name: Update Dependencies - run: bun update - - - name: Commit and Push Changes - env: - USERNAME_GITEA: ${{ secrets.USERNAME_GITEA }} - TOKEN_GITEA: ${{ secrets.TOKEN_GITEA }} - SERVER_URL: ${{ secrets.SERVER_URL }} - run: | - git config --global user.name "LibreCloud Actions Bot" - git config --global user.email "git@pontusmail.org" - echo "Connecting to $SERVER_URL" - git remote set-url origin https://${USERNAME_GITEA}:${TOKEN_GITEA}@git.pontusmail.org/librecloud/web.git - git add . - git commit -m "chore: bump dependencies" || exit 0 - git push origin main \ No newline at end of file