⬆ Bump mypy from 1.8.0 to 1.14.1 #14
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
name: Notify Translations | |
on: | |
pull_request_target: | |
types: | |
- labeled | |
- closed | |
workflow_dispatch: | |
inputs: | |
number: | |
description: PR number | |
required: true | |
debug_enabled: | |
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
required: false | |
default: 'false' | |
permissions: | |
discussions: write | |
env: | |
UV_SYSTEM_PYTHON: 1 | |
jobs: | |
notify-translations: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Setup uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
version: "0.4.15" | |
enable-cache: true | |
cache-dependency-glob: | | |
requirements**.txt | |
pyproject.toml | |
# Allow debugging with tmate | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }} | |
with: | |
limit-access-to-actor: true | |
- uses: ./.github/actions/notify-translations | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |