diff options
author | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2017-04-21 13:32:31 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-04-21 19:32:31 +0800 |
commit | 4bea2191286dd5a9c89696d3e8cd506caf997c7e (patch) | |
tree | 4f720881614581ccfa656a9f61d1a89313e05ceb /models/fixtures/commit_status.yml | |
parent | 52627032bc55bd73694bea9e6e17df575b51664c (diff) | |
download | gitea-4bea2191286dd5a9c89696d3e8cd506caf997c7e.tar.gz gitea-4bea2191286dd5a9c89696d3e8cd506caf997c7e.zip |
Status-API (#1332)
Diffstat (limited to 'models/fixtures/commit_status.yml')
-rw-r--r-- | models/fixtures/commit_status.yml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/models/fixtures/commit_status.yml b/models/fixtures/commit_status.yml new file mode 100644 index 0000000000..20d57975ef --- /dev/null +++ b/models/fixtures/commit_status.yml @@ -0,0 +1,54 @@ +- + id: 1 + index: 1 + repo_id: 1 + state: "pending" + sha: "1234123412341234123412341234123412341234" + target_url: https://example.com/builds/ + description: My awesome CI-service + context: ci/awesomeness + creator_id: 2 + +- + id: 2 + index: 2 + repo_id: 1 + state: "warning" + sha: "1234123412341234123412341234123412341234" + target_url: https://example.com/converage/ + description: My awesome Coverage service + context: cov/awesomeness + creator_id: 2 + +- + id: 3 + index: 3 + repo_id: 1 + state: "success" + sha: "1234123412341234123412341234123412341234" + target_url: https://example.com/converage/ + description: My awesome Coverage service + context: cov/awesomeness + creator_id: 2 + +- + id: 4 + index: 4 + repo_id: 1 + state: "failure" + sha: "1234123412341234123412341234123412341234" + target_url: https://example.com/builds/ + description: My awesome CI-service + context: ci/awesomeness + creator_id: 2 + +- + id: 5 + index: 5 + repo_id: 1 + state: "error" + sha: "1234123412341234123412341234123412341234" + target_url: https://example.com/builds/ + description: My awesome deploy service + context: deploy/awesomeness + creator_id: 2 |