Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflows #4421

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix typo and linting issue
  • Loading branch information
dhruvkb committed Jun 1, 2024
commit 6ec3662257bcbe78fa46a06a7bdd61873a6dce61
2 changes: 1 addition & 1 deletion documentation/_ext/link_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def resolve_issue_reference(

def init_cache(app: Sphinx) -> None:
if not hasattr(app.env, "issuetracker_cache"):
app.env.issuetracker_cache: "IssueTrackerCache" = {} # type: ignore
app.env.issuetracker_cache: IssueTrackerCache = {}
return None


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ where they render a 3D model on hover of the search results, when on desktop.
base feature branch needed. Meta search support for 3D models does not need to
be feature flagged.
- e2e tests should be added for any new routes; and updated for existing routes
that are modified. PRs will be blocked in the abcense of these tests.
that are modified. PRs will be blocked in the absence of these tests.
- New content types should always launch in `beta` until we reach a certain
number of results and/or are confident in our UI components (this metric(s)
need to be determined).
Expand Down
Loading