• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wooga / atlas-github / 48
100%
master: 39%

Build:
Build:
LAST BUILD BRANCH: PR-122
DEFAULT BRANCH: master
Ran 18 Aug 2017 12:39PM UTC
Jobs 1
Files 8
Run time 1s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
48

push

travis-ci

Larusso
Add generic Github gradle task type

This task allows the user to issue github API calls to the provided
repository. It also exposes the `GHClient` object to do other API
related jobs.

**create repos**
```
customGithubTask {
    doLast {
        def builder =client.createRepository("Repo")
        builder.description("description")
        builder.autoInit(false)
        builder.licenseTemplate('MIT')
        builder.private_(false)
        builder.issues(false)
        builder.wiki(false)
        builder.create()
    }
}
```

**update files**
```
customGithubTask {
    doLast {
        def content = repository.getFileContent("$file")
        content.update("$updatedContent", "update release notes")
    }
}
```

278 of 304 relevant lines covered (91.45%)

0.91 hits per line

Jobs
ID Job ID Ran Files Coverage
3 48.3 18 Aug 2017 12:39PM UTC 0
91.45
Travis Job 48.3
Source Files on build 48
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #48
  • 545dad82 on github
  • Prev Build on refactor/abstract_github_task (#39)
  • Next Build on refactor/abstract_github_task (#52)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc