Skip to content

Dependabot merges PRs that do not pass CI #33

Closed
@raxod502

Description

@raxod502

Looks like the CI errors noted in #32 were introduced by #31 being auto-merged by

automerge:
name: AutoMerge
needs: ci
runs-on: ubuntu-latest
if: github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]'
steps:
- uses: actions/github-script@v3
with:
script: |
github.pulls.merge({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.pull_request.number
})
despite some checks not passing:

image

For some reason the same CI was run twice, but once as a no-op (which passed) and once with the actual tests (which failed). I think the GitHub Actions configuration needs to be updated somehow to prevent that.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions