diff --git a/.gitea/workflows/e2e-test.yaml b/.gitea/workflows/e2e-test.yaml deleted file mode 100644 index 3cbdd41..0000000 --- a/.gitea/workflows/e2e-test.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: E2E Renovate Test -on: - workflow_run: - workflows: ["Test Renovate Config"] - types: - - completed - -jobs: - e2e-renovate: - runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion == 'success' }} - container: ghcr.io/renovatebot/renovate:42.8.1 - steps: - - name: Checkout - uses: actions/checkout@v5.0.0 - with: - ref: ${{ github.event.workflow_run.head_branch }} - - - name: Run Renovate E2E Script - run: bash scripts/e2e-renovate.sh - env: - RENOVATE_CONFIG_FILE: "/workspace/kovagoadi.hu/Renovate/renovate-config.js" - LOG_LEVEL: "debug" - RENOVATE_TOKEN: ${{ secrets.RENOVATE_TEST_TOKEN }} - GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }} diff --git a/.gitea/workflows/test-config.yaml b/.gitea/workflows/test-config.yaml index 5274b9e..1113a26 100644 --- a/.gitea/workflows/test-config.yaml +++ b/.gitea/workflows/test-config.yaml @@ -20,3 +20,19 @@ jobs: LOG_LEVEL: "debug" RENOVATE_TOKEN: ${{ secrets.RENOVATE_TEST_TOKEN }} GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }} + + e2e-renovate: + runs-on: ubuntu-latest + needs: test-renovate + container: ghcr.io/renovatebot/renovate:42.8.1 + steps: + - name: Checkout + uses: actions/checkout@v5.0.0 + + - name: Run Renovate E2E Script + run: bash scripts/e2e-renovate.sh + env: + RENOVATE_CONFIG_FILE: "/workspace/kovagoadi.hu/Renovate/renovate-config.js" + LOG_LEVEL: "debug" + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TEST_TOKEN }} + GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}