-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add requester info #12
Open
thsaravana
wants to merge
15
commits into
main
Choose a base branch
from
add-requester-info
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+58
−10
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
7bf416e
Test large file
thsaravana dc736a9
Adding debug-mode
thsaravana afeb2df
Pointing to v1.1
thsaravana 7b4da8b
Reverting the code to older version
thsaravana 58f3f23
Add reviewers yml
thsaravana 46959ef
Changing name of the workflow
thsaravana edc9d41
Remove coverage step
thsaravana f0db3e9
Try out
thsaravana 3bff9f5
Adding more reviewers
thsaravana caf4dbd
Testing Jacoco Report missing SHA
thsaravana 93ab811
Merge branch 'main' into add-requester-info
thsaravana 856000a
Testing Jacoco Report missing SHA
thsaravana 7fb8fbd
Testing Jacoco Report missing SHA
thsaravana 5feb41d
Testing Jacoco Report push Event
thsaravana 95845e0
Testing Jacoco Report payload
thsaravana File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Add Requester | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Add Reviewers | ||
uses: madrapps/add-reviewers@main | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
reviewers: saravana-thiyagaraj,instrap,muralikrish91,thsaravana | ||
debug-mode: true | ||
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,7 @@ | ||
package com.madrapps.jacoco; | ||
|
||
public interface StringOperation { | ||
boolean endsWith(String source, String chars); | ||
|
||
boolean startsWith(String source, String chars); | ||
} |
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,12 @@ | ||
package com.madrapps.jacoco | ||
|
||
interface MathOperation { | ||
fun add(a: Int, b: Int): Int | ||
fun subtract(a: Int, b: Int): Int | ||
fun multiply(a: Int, b: Int): Int | ||
fun divide(a: Int, b: Int): Int | ||
|
||
interface MathOp { | ||
|
||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this?