Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
blank_issues_enabled: false
contact_links:
- name: Gluten Discussions
url: https://github.com/apache/incubator-gluten/discussions
url: https://github.com/apache/gluten/discussions
about: Ask questions or discuss new feature ideas here.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Thank you for submitting a pull request! Here are some tips:

1. For first-time contributors, please read our contributing guide:
https://github.com/apache/incubator-gluten/blob/main/CONTRIBUTING.md
https://github.com/apache/gluten/blob/main/CONTRIBUTING.md
2. If necessary, create a GitHub issue for discussion beforehand to avoid duplicate work.
3. If the PR is specific to a single backend, include [VL] or [CH] in the PR title to indicate the
Velox or ClickHouse backend, respectively.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev_cron/pr_issue_linker.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function detectIssueID(title) {
}

async function appendToPRDescription(github, context, pullRequestNumber, issuesID) {
const issueURL = `https://github.com/apache/incubator-gluten/issues/${issuesID}`;
const issueURL = `https://github.com/apache/gluten/issues/${issuesID}`;
const issueReference = `#${issuesID}`

// Fetch the current PR description.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/velox_weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
export PATH=$JAVA_HOME/bin:$PATH

# action/checkout does not work centos7 anymore, so we clone the branch instead.
git clone -b main --depth=1 https://github.com/apache/incubator-gluten.git && cd incubator-gluten/
git clone -b main --depth=1 https://github.com/apache/gluten.git && cd gluten/
if [ ${{ github.event_name }} = "pull_request" ]; then
git fetch origin ${{ github.ref }}:pr_branch && git checkout pr_branch
fi
Expand Down
Loading