We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf5ca2 commit 66afc93Copy full SHA for 66afc93
.github/workflows/rustdoc-preview.yml
@@ -42,7 +42,7 @@ jobs:
42
uses: actions/checkout@v4
43
with:
44
# Check out the PR's branch
45
- ref: ${{ github.event.pull_request.head.ref }}
+ ref: refs/pull/${{ github.event.issue.number }}/head
46
47
- name: Install Rust toolchain
48
uses: dtolnay/rust-toolchain@nightly
@@ -67,7 +67,7 @@ jobs:
67
const pr_number = context.issue.number;
68
const repo = context.repo.repo;
69
const owner = context.repo.owner;
70
- const url = `https://${owner}.github.io/${repo}/pr-${pr_number}/`;
+ const url = `https://${owner}.github.io/${repo}/pr-${pr_number}/hyper_util/`;
71
github.rest.issues.createComment({
72
issue_number: pr_number,
73
owner,
0 commit comments