Bug causing KERNEL_MODE_HEAP_CORRUPTION (13a) BSOD on Windows 11 build 23H2 2024-10 Cumulative Update Version 23H2 for x64-based Systems (KB5044285) #340
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow responds with a message when certain labels are added to an issue or PR. | |
# Docs: https://github.com/dessant/label-actions | |
name: Label Actions | |
# This workflow is triggered when a label is added to an issue. | |
on: | |
issues: | |
types: labeled | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
action: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dessant/label-actions@v3 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
config-path: ".github/label-actions.yml" | |
process-only: "issues" |