diff --git a/renovate.json5 b/.forgejo/renovate.json5 similarity index 100% rename from renovate.json5 rename to .forgejo/renovate.json5 diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml new file mode 100644 index 0000000..a8c6ad6 --- /dev/null +++ b/.forgejo/workflows/build.yaml @@ -0,0 +1,14 @@ +on: [push] +jobs: + renovate: + name: Renovate + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Renovate + uses: https://github.com/renovatebot/github-action@v40.1.11 + with: + configurationFile: .forgejo/renovate-config.json5 + token: "${{ secrets.RENOVATE_TOKEN }}" diff --git a/.forgejo/workflows/try.yaml b/.forgejo/workflows/try.yaml deleted file mode 100644 index 65fa851..0000000 --- a/.forgejo/workflows/try.yaml +++ /dev/null @@ -1,8 +0,0 @@ -on: [push] -jobs: - ls: - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v3 - - run: | - ls ${{ github.workspace }}