Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 4 additions & 1 deletion .github/actions/doc_preview/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,20 @@
#
# SPDX-License-Identifier: Apache-2.0

name: Preview or clean up docs built from PRs
name: Docs in PRs
description: Preview or clean up docs built from PRs

# A re-implementation based on the logic of https://github.com/rossjrw/pr-preview-action/blob/41a957c44a456a34718e9bcf825363194db5e6d5/README.md, due to limitations illustrated in NVIDIA/cuda-python#380.

inputs:
source-folder:
required: true
type: string
description: "Source code directory"
pr-number:
required: true
type: string
description: "Pull request number"

runs:
using: composite
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

name: "CI: Release"

description: Manually-triggered release workflow. Creates a release draft if one doesn't exist for the given tag, or uses existing draft.
# Manually-triggered release workflow. Creates a release draft if one doesn't exist for the given tag, or uses existing draft.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

description is only a valid field in action.ymls, not workflows.


on:
workflow_dispatch:
Expand Down
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,10 @@ repos:
files: ^cuda_pathfinder/cuda/.*\.py$ # Exclude tests directory
args: [--config-file=cuda_pathfinder/pyproject.toml]

- repo: https://github.com/rhysd/actionlint
rev: "03d0035246f3e81f36aed592ffb4bebf33a03106"
hooks:
- id: actionlint

default_language_version:
python: python3