* ci: Upgrade to Ubuntu 24.04 (Noble) * Install clang-format-16 directly from the Noble repo * Remove redundant gcc 11 ASAN build * Count `dm` map items more granularly in `dbg_maps` test * Grep only for exception symbols in `dbg_dmi` test * Add workaround for `dbg_maps` test * Mask out different digits in `dbg_dmh` test * Add workarounds for sprintf false positives * For now, use `-fno-sanitize=function` with clang asan build
20 lines
444 B
YAML
20 lines
444 B
YAML
name: "Pull Request Labeler"
|
|
on:
|
|
- pull_request_target
|
|
|
|
# Automatically cancel any previous workflow on new push.
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
triage:
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/labeler@v4
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|