This is an automated email from the ASF dual-hosted git repository.
zhouky pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
The following commit(s) were added to refs/heads/main by this push:
new 90ff0dba2 [CELEBORN-951][FOLLOWUP] IssueNavigationLink adapts to early
Github Issues
90ff0dba2 is described below
commit 90ff0dba2fb9e39d4e2303e782e5ae5e01c4abbb
Author: sychen <[email protected]>
AuthorDate: Wed Sep 20 09:06:00 2023 +0800
[CELEBORN-951][FOLLOWUP] IssueNavigationLink adapts to early Github Issues
### What changes were proposed in this pull request?
https://github.com/apache/incubator-celeborn/pull/1883

### Why are the changes needed?
### Does this PR introduce _any_ user-facing change?
### How was this patch tested?
Closes #1926 from cxzl25/CELEBORN-951_followup.
Authored-by: sychen <[email protected]>
Signed-off-by: zky.zhoukeyong <[email protected]>
---
.idea/vcs.xml | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
index 8cc7fcc07..72bcc44db 100644
--- a/.idea/vcs.xml
+++ b/.idea/vcs.xml
@@ -20,12 +20,16 @@
<option name="links">
<list>
<IssueNavigationLink>
- <option name="issueRegexp" value="[A-Z]+\-\d+" />
- <option name="linkRegexp"
value="https://issues.apache.org/jira/browse/$0" />
+ <option name="issueRegexp" value="ISSUE-(\d+)"/>
+ <option name="linkRegexp"
value="https://github.com/apache/incubator-celeborn/issues/$1"/>
</IssueNavigationLink>
<IssueNavigationLink>
- <option name="issueRegexp" value="#(\d+)" />
- <option name="linkRegexp"
value="https://github.com/apache/incubator-celeborn/pull/$1" />
+ <option name="issueRegexp" value="CELEBORN\-\d+"/>
+ <option name="linkRegexp"
value="https://issues.apache.org/jira/browse/$0"/>
+ </IssueNavigationLink>
+ <IssueNavigationLink>
+ <option name="issueRegexp" value="#(\d+)"/>
+ <option name="linkRegexp"
value="https://github.com/apache/incubator-celeborn/pull/$1"/>
</IssueNavigationLink>
</list>
</option>