diff --git a/.github/renovate.json b/.github/renovate.json index cc5ba24..0babd11 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -12,9 +12,6 @@ "assignees": [ "@phnx47" ], - "ignoreDeps": [ - "System.Text.Encodings.Web" - ], "packageRules": [ { "automerge": true, diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml deleted file mode 100644 index 7944fb0..0000000 --- a/.github/workflows/automerge.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Automerge - -on: - pull_request: - types: [labeled] - branches: - - "main" - -permissions: - pull-requests: write - contents: write - -jobs: - automerge: - name: Enable PR Automerge - runs-on: ubuntu-22.04 - if: github.actor == 'phnx47-bot' && contains(github.event.pull_request.labels.*.name, 'sync') - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Run Command - run: gh pr merge -s --auto ${{ github.event.pull_request.number }} - env: - GH_TOKEN: ${{ secrets.GH_FULL_PAT }}