Coder Social home page Coder Social logo

Comments (2)

erichbehrens avatar erichbehrens commented on June 4, 2024

Thanks for reporting the issue. Could you please provide some example data so I can check why the extension is seeing those PRs as mergeable?

This is the query executed by the extension (except I removed references to repos and PR titles, so it's safe to post the result here). You can execute it from GitHub's GraphQL explorer: https://developer.github.com/v4/explorer/

query {
  viewer {
      pullRequests(last: 10 states:[OPEN]) {
          nodes {
            number
            mergeable
            state
            merged
            potentialMergeCommit {
              status {
                state
              }
            }
            commits(last: 1){
              nodes{
                commit{
                  status{
                    state
                  }
                }
              }
            }
            reviews(first: 10) {
              edges {
                node {
                  state
                }
              }
            }
          }
    }
  }
}

from pull-request-monitor.

mcamou avatar mcamou commented on June 4, 2024

Sorry for taking so long to reply. I've been trying to get authorization from my company to use the GraphQL explorer but haven't been able to. In the end I figured out how to do it with HTTPie. I don't currently have a PR where CI is failing, but this one cannot be merged because it doesn't have any approvals yet. Weirdly enough, GitHub says it's MERGEABLE...

{
    "data": {
        "viewer": {
            "pullRequests": {
                "nodes": [
                    {
                        "commits": {
                            "nodes": [
                                {
                                    "commit": {
                                        "status": null
                                    }
                                }
                            ]
                        },
                        "mergeable": "MERGEABLE",
                        "merged": false,
                        "number": 126,
                        "potentialMergeCommit": {
                            "status": null
                        },
                        "reviews": {
                            "edges": []
                        },
                        "state": "OPEN"
                    }
                ]
            }
        }
    }
}

from pull-request-monitor.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.