forked from jenkins-x/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add a test for PullRequest.ListChanges in Gitea
Signed-off-by: Andrew Bayer <[email protected]>
- Loading branch information
Showing
3 changed files
with
66 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[ | ||
{ | ||
"Path": "README", | ||
"Added": true, | ||
"Additions": 1 | ||
}, | ||
{ | ||
"Path": "script.sh", | ||
"PreviousPath": "script.sh", | ||
"Additions": 1, | ||
"Deletions": 1 | ||
} | ||
] |
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 @@ | ||
From 3c716f1eb086c9039745e3cadf873c9cbbb481e5 Mon Sep 17 00:00:00 2001 | ||
From: jenkins-x-bot <[email protected]> | ||
Date: Fri, 4 Sep 2020 15:16:56 +0000 | ||
Subject: [PATCH] Adding for test PR | ||
|
||
--- | ||
README | 1 + | ||
script.sh | 2 +- | ||
2 files changed, 2 insertions(+), 1 deletion(-) | ||
create mode 100644 README | ||
|
||
diff --git a/README b/README | ||
new file mode 100644 | ||
index 0000000..70c379b | ||
--- /dev/null | ||
+++ b/README | ||
@@ -0,0 +1 @@ | ||
+Hello world | ||
\ No newline at end of file | ||
diff --git a/script.sh b/script.sh | ||
index 4915bcb..2c42f17 100644 | ||
--- a/script.sh | ||
+++ b/script.sh | ||
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
|
||
-echo "This passes" | ||
+echo "This has changed but still passes" | ||
-- | ||
2.24.3 |