-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 880 Bytes
/
typing.yml
File metadata and controls
37 lines (32 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# SPDX-FileCopyrightText: © 2025 open-nudge <https://github.com/open-nudge>
# SPDX-FileContributor: szymonmaszke <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
---
name: "Typing"
on:
pull_request:
branches:
- "main"
paths:
- "**.py"
- ".github/workflows/typing.yml"
- ".github/workflows/typing-reusable.yml"
- ".github/workflows/run-*reusable.yml"
merge_group:
types:
- "checks_requested"
permissions: {} # yamllint disable-line rule:braces
concurrency:
group: >
${{ github.workflow_ref }}-${{ github.ref }}
cancel-in-progress: true
jobs:
typing:
name: "Typing"
permissions:
contents: "read"
# yamllint disable rule:line-length
uses: "open-nudge/opentemplate/.github/workflows/typing-reusable.yml@main" # zizmor: ignore[unpinned-uses]
# yamllint enable rule:line-length
...