diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 545ccc8c21d7..368469f283ed 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -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. diff --git a/.github/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE index c6fda31113e3..2ee082cb9b8b 100644 --- a/.github/PULL_REQUEST_TEMPLATE +++ b/.github/PULL_REQUEST_TEMPLATE @@ -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. diff --git a/.github/workflows/dev_cron/pr_issue_linker.js b/.github/workflows/dev_cron/pr_issue_linker.js index 2fa2c7cd5e1f..0a9a892b2a2f 100644 --- a/.github/workflows/dev_cron/pr_issue_linker.js +++ b/.github/workflows/dev_cron/pr_issue_linker.js @@ -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. diff --git a/.github/workflows/velox_weekly.yml b/.github/workflows/velox_weekly.yml index 3ae0139671d5..1e0cd10155e6 100644 --- a/.github/workflows/velox_weekly.yml +++ b/.github/workflows/velox_weekly.yml @@ -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