diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 126e6c1..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,51 +0,0 @@ -version: 2 -registries: - composer-fluxui: - type: composer-repository - url: https://composer.fluxui.dev - username: ${{secrets.FLUX_USERNAME}} - password: ${{secrets.FLUX_LICENSE_KEY}} - -updates: - - package-ecosystem: 'github-actions' - directory: '/' - schedule: - interval: 'daily' - target-branch: 'main' - open-pull-requests-limit: 10 - ignore: - - dependency-name: '*' - update-types: ['version-update:semver-major'] - groups: - actions: - patterns: - - '*' - - - package-ecosystem: 'composer' - directory: '/' - schedule: - interval: 'daily' - target-branch: 'main' - versioning-strategy: 'increase' - open-pull-requests-limit: 10 - ignore: - - dependency-name: '*' - update-types: ['version-update:semver-major'] - groups: - php-dependencies: - patterns: - - '*' - - - package-ecosystem: 'npm' - directory: '/' - schedule: - interval: 'daily' - target-branch: 'main' - open-pull-requests-limit: 10 - ignore: - - dependency-name: '*' - update-types: ['version-update:semver-major'] - groups: - npm-dependencies: - patterns: - - '*' diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml deleted file mode 100644 index 5e45b1f..0000000 --- a/.github/workflows/dependabot-automerge.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: "Dependabot Automerge" - -on: - pull_request: - -permissions: - pull-requests: write - contents: write - -jobs: - worker: - runs-on: ubuntu-latest - - if: github.actor == 'dependabot[bot]' - steps: - - name: Approve PR - run: gh pr review --approve "$PR_URL" - env: - PR_URL: ${{ github.event.pull_request.html_url }} - GH_TOKEN: ${{ github.token }} - - - name: Enable auto-merge - run: gh pr merge --auto --squash "$PR_URL" - env: - PR_URL: ${{ github.event.pull_request.html_url }} - GH_TOKEN: ${{ github.token }}