mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 05:32:28 +08:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [aminya/setup-cpp](https://redirect.github.com/aminya/setup-cpp) | action | patch | `v1.7.1` -> `v1.7.2` | | ghcr.io/llvm/ci-ubuntu-24.04-abi-tests | container | digest | `01e66b0` -> `f80125c` | | [github/codeql-action](https://redirect.github.com/github/codeql-action) | action | patch | `v4.31.2` -> `v4.31.3` | | llvm/actions | action | digest | `42d8057` -> `5dd9550` |
24 lines
587 B
YAML
24 lines
587 B
YAML
name: Labeling new issues
|
|
on:
|
|
issues:
|
|
types: ['opened']
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
automate-issues-labels:
|
|
permissions:
|
|
issues: write
|
|
runs-on: ubuntu-24.04
|
|
if: github.repository == 'llvm/llvm-project'
|
|
steps:
|
|
- uses: llvm/actions/issue-labeler@5dd955034a6742a2e21d82bf165fcb1050ae7b49 # main
|
|
with:
|
|
repo-token: ${{ secrets.ISSUE_SUBSCRIBER_TOKEN }}
|
|
configuration-path: .github/new-issues-labeler.yml
|
|
include-title: 1
|
|
include-body: 0
|
|
sync-labels: 0
|
|
enable-versioned-regex: 0
|