diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 69e999b..0000000 --- a/.drone.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -kind: pipeline -type: kubernetes -name: renovate - -steps: - - name: renovate - image: renovate/renovate:41.97.7 - commands: - - unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL - - renovate - - environment: - RENOVATE_TOKEN: - from_secret: RENOVATE_TOKEN - GITHUB_COM_TOKEN: - from_secret: GITHUB_COM_TOKEN diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml new file mode 100644 index 0000000..3d931a5 --- /dev/null +++ b/.gitea/workflows/renovate.yml @@ -0,0 +1,23 @@ +name: renovate + +on: + schedule: + - cron: "@daily" + workflow_dispatch: + +jobs: + renovate: + runs-on: ubuntu-latest + container: + image: renovate/renovate:41.97.7 + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Run Renovate + env: + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} + GITHUB_COM_TOKEN: ${{ secrets.PAT_TOKEN }} + run: | + renovate