name: Automerge concurrency: group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true on: pull_request: push: schedule: - cron: '0 0 * * *' workflow_dispatch: jobs: Debian: if: ${{ !(github.event_name != 'pull_request' && github.actor == 'dependabot[bot]') }} uses: ./.github/workflows/sphinx-tuttest.yml with: distribution: debian Ubuntu: if: ${{ !(github.event_name != 'pull_request' && github.actor == 'dependabot[bot]') }} uses: ./.github/workflows/sphinx-tuttest.yml with: distribution: ubuntu Fedora: if: ${{ !(github.event_name != 'pull_request' && github.actor == 'dependabot[bot]') }} uses: ./.github/workflows/sphinx-tuttest.yml with: distribution: fedora Automerge: needs: - Debian - Ubuntu - Fedora if: github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' runs-on: ubuntu-latest name: Automerge dependabot PRs permissions: contents: write steps: - name: Auto-merge Dependabot PR run: GITHUB_TOKEN='${{ github.token }}' gh pr merge '${{ github.event.pull_request.html_url }}' --squash