Skip to content
Merged
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/workflows/trigger-breaking-change-alert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
trigger-notifier:
if: contains(github.event.pull_request.labels.*.name, 'breaking')
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.02
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@main
with:
sender_login: ${{ github.event.sender.login }}
sender_avatar: ${{ github.event.sender.avatar_url }}
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ci:
autoupdate_schedule: 'monthly'
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.14
rev: v0.15.0
hooks:
- id: ruff-format
args: ["--config", "pyproject.toml"]
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Here is an example test workflow:
# Set up environment variables for `gha-tools` scripts below
export RAPIDS_BUILD_TYPE=branch
export RAPIDS_REPOSITORY=rapidsai/cugraph
export RAPIDS_REF_NAME=branch-25.06
export RAPIDS_REF_NAME=main

# latest commit on that branch
export RAPIDS_SHA="$(git ls-remote https://github.com/${RAPIDS_REPOSITORY}.git refs/heads/${RAPIDS_REF_NAME} | awk '{print $1}')"
Expand Down
2 changes: 1 addition & 1 deletion tools/rapids-github-run-id
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fi
#
# or
#
# GITHUB_WORKFLOW_REF=rapidsai/cudf/.github/workflows/build.yaml@refs/heads/branch-25.08
# GITHUB_WORKFLOW_REF=rapidsai/cudf/.github/workflows/build.yaml@refs/heads/main
#
# docs on 'GITHUB_WORKFLOW_REF': https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/store-information-in-variables
#
Expand Down
4 changes: 2 additions & 2 deletions tools/rapids-prompt-local-repo-config
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# * RAPIDS_NIGHTLY_DATE = Date in YYYY-MM-DD format, used to organize nightly uploads.
# If not provided, the current system time is used.
# Only used when `RAPIDS_BUILD_TYPE` is "nightly".
# * RAPIDS_REF_NAME = Branch or tag (e.g. "branch-25.08" or "pull-request/1234")
# * RAPIDS_REF_NAME = Branch or tag (e.g. "main", "release/26.04", or "pull-request/1234")
# * RAPIDS_REPOSITORY = Repository the run happened in, in {org}/{repo} format (e.g. "rapidsai/rmm")
# * RAPIDS_SHA = Commit SHA on the repository indicated by `RAPIDS_REPOSITORY`.
# If not provided, this script assumes it's being run from within that repo
Expand Down Expand Up @@ -52,7 +52,7 @@ if [ "${CI:-false}" = "false" ]; then
read -r -p "Enter pull-request number (e.g. 1546): " PR_NUMBER
RAPIDS_REF_NAME=pull-request/${PR_NUMBER}
else
read -r -p "Enter branch name (e.g. branch-23.08): " RAPIDS_REF_NAME
read -r -p "Enter branch name (e.g. main): " RAPIDS_REF_NAME
fi
export RAPIDS_REF_NAME
echo ""
Expand Down