Github commits always stay in progress

Hello,

As title says, ever since i updated to 0.8 my commits say with yellow and say "Pending: this build is pending"
Even tho my build has finished

How do i resolve this issue?

version: '2'

services:
  server:
    image: drone/drone:0.8
    ports:
      - 8585:8000
      - 9000
    volumes:
      - ./data:/var/lib/drone/
    restart: always
    environment:
      - DRONE_OPEN=false
      - DRONE_ADMIN=UnAfraid
      - DRONE_GITHUB=true
      - DRONE_GITHUB_CLIENT=<my client secret here>
      - DRONE_GITHUB_SECRET=<my secret here>
      - DRONE_GITHUB_MERGE_REF=false
      - DRONE_SECRET=<my secret here>
      - DRONE_HOST="drone.mydomain.com"

  agent:
    image: drone/agent:0.8
    command: agent
    restart: always
    depends_on: [ server ]
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    environment:
      - DRONE_SERVER=server:9000
      - DRONE_SECRET=<my secret here>

this happens when the DRONE_HOST parameter is not properly configured. In this case, you need to set DRONE_HOST to the fully qualified URL, for example, https://drone.mydomain.com. You also need to remove the quotes, because docker-compose does not unquote string literals. Hope that helps!