This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Workflow changes for AD release Update release workflow to be triggered only, when a new tag is pushed ( starts with v ) * Add badge for testing and code coverage Added flag: cli for cli project Added flag: plugin for java * Include threshold * Include flag in code covereage
- Loading branch information
1 parent
6a5e322
commit d5e1203
Showing
6 changed files
with
40 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
name: Publish | ||
on: [pull_request, push] | ||
name: Publish AD CLI | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
threshold: 1 | ||
target: auto | ||
plugin: | ||
target: 70% | ||
paths: | ||
- "!cli/" | ||
flags: | ||
- plugin | ||
cli: | ||
target: 78% | ||
paths: | ||
- "cli/" | ||
flags: | ||
- cli | ||
comment: | ||
layout: "reach, diff, flags, files" | ||
behavior: default | ||
require_changes: false | ||
require_base: no | ||
require_head: no | ||
branches: null | ||
flags: | ||
plugin: | ||
carryforward: true | ||
cli: | ||
carryforward: true |