1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-17 17:45:03 +02:00
Diep Pham e3a5376d01 uses email from Sender field of push event
Gitea/Gogs [set repository owner](d644e88107/models/pull.go (L469)) information as Pusher in webhook.

For example, if we have a repository: git.example.com/org1/repo1, owner
of repository will be `org1` and the email field will be empty. This PR
changes gitea/gogs helpers to use the email in Sender field, which is
the user that click the merge button.
2018-02-06 15:15:24 +07:00
2018-01-18 10:33:41 -06:00
2017-10-05 14:02:23 -07:00
2018-02-01 14:07:45 -06:00
2017-10-05 14:17:27 -07:00
2018-01-12 22:53:44 -06:00
2018-01-10 13:31:07 -08:00
2016-05-26 11:08:48 -07:00
2018-01-10 13:31:07 -08:00
2017-10-21 10:29:14 -07:00
2017-09-11 16:03:11 -07:00
2017-09-27 19:01:52 -07:00
2017-09-27 19:01:52 -07:00
2017-09-27 19:01:52 -07:00
2014-02-07 03:10:01 -07:00
2017-09-29 09:49:56 +08:00

Drone is a Continuous Delivery system built on container technology. Drone uses a simple YAML configuration file, a superset of docker-compose, to define and execute Pipelines inside Docker containers.


Sample Pipeline Configuration:

pipeline:
  backend:
    image: golang
    commands:
      - go get
      - go build
      - go test

  frontend:
    image: node:6
    commands:
      - npm install
      - npm test

  publish:
    image: plugins/docker
    repo: octocat/hello-world
    tags: [ 1, 1.1, latest ]
    registry: index.docker.io

  notify:
    image: plugins/slack
    channel: developers
    username: drone

Documentation and Other Links:

Description
Woodpecker is a simple yet powerful CI/CD engine with great extensibility.
Readme 169 MiB
Languages
Go 86.4%
Vue 9%
TypeScript 3.3%
Makefile 0.7%
CSS 0.4%
Other 0.1%