Skip to content

fix: update release process #6

fix: update release process

fix: update release process #6

Workflow file for this run

# 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
...