Skip to content

Commit

Permalink
Merge branch 'microsoft:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
anupamachandra authored Oct 30, 2024
2 parents 2fd2977 + 1571507 commit 730cfcd
Show file tree
Hide file tree
Showing 4 changed files with 401 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/pr-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
needs-triage:
- proposals/**/*
14 changes: 14 additions & 0 deletions .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Pull Request Labeler"
on:
- pull_request_target

jobs:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
with:
configuration-path: .github/prs-labels.yml
2 changes: 1 addition & 1 deletion proposals/0010-vk-buffer-ref.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ struct TestPushConstant_t
float4 MainPs(void) : SV_Target0
{
block_p g_p(g_PushConstants.root);
block_p g_p = block_p(g_PushConstants.root);
g_p = g_p.Get().next;
if ((uint64_t)g_pi == 0) // Null pointer test
return float4(0.0,0.0,0.0,0.0);
Expand Down
Loading

0 comments on commit 730cfcd

Please sign in to comment.