Skip to content

Commit 4fc881d

Browse files
committed
Rename yml workflows to yaml
1 parent 7906921 commit 4fc881d

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

.github/workflows/lint-and-build.yml renamed to .github/workflows/lint-and-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
paths:
1515
- "**.py"
1616
- "**.ui"
17-
- ".github/workflows/lint-and-build.yml"
17+
- ".github/workflows/lint-and-build.yaml"
1818
- "**/requirements.txt"
1919
pull_request:
2020
branches:
@@ -23,7 +23,7 @@ on:
2323
- "**.py"
2424
- "**.pyi"
2525
- "**.ui"
26-
- ".github/workflows/lint-and-build.yml"
26+
- ".github/workflows/lint-and-build.yaml"
2727
- "**/requirements*.txt"
2828

2929
env:
File renamed without changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- markdownlint-disable-next-line MD033 -->
2-
# <img src="res/icon.ico" alt="LiveSplit" height="42" width="42" align="top"/> AutoSplit [![CodeQL](/../../actions/workflows/codeql-analysis.yml/badge.svg)](/../../actions/workflows/codeql-analysis.yml) [![Lint and build](/../../actions/workflows/lint-and-build.yml/badge.svg)](/../../actions/workflows/lint-and-build.yml)
2+
# <img src="res/icon.ico" alt="LiveSplit" height="42" width="42" align="top"/> AutoSplit [![CodeQL](/../../actions/workflows/codeql-analysis.yaml/badge.svg)](/../../actions/workflows/codeql-analysis.yaml) [![Lint and build](/../../actions/workflows/lint-and-build.yaml/badge.svg)](/../../actions/workflows/lint-and-build.yaml)
33

44
[![SemVer](https://badgen.net/badge/_/SemVer%20compliant/grey?label)](https://semver.org/)
55
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://docs.astral.sh/ruff/linter/)

src/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,6 @@ def run_tesseract(png: bytes):
304304
# Environment specifics
305305
WINDOWS_BUILD_NUMBER = int(version().split(".")[-1]) if sys.platform == "win32" else -1
306306
FIRST_WIN_11_BUILD = 22000
307-
"""AutoSplit Version number"""
308307
WGC_MIN_BUILD = 17134
309308
"""https://docs.microsoft.com/en-us/uwp/api/windows.graphics.capture.graphicscapturepicker#applies-to"""
310309
FROZEN = hasattr(sys, "frozen")
@@ -315,4 +314,5 @@ def run_tesseract(png: bytes):
315314
# Shared strings
316315
# Check `excludeBuildNumber` during workflow dispatch build generate a clean version number
317316
AUTOSPLIT_VERSION = "2.3.0" + (f"-{AUTOSPLIT_BUILD_NUMBER}" if AUTOSPLIT_BUILD_NUMBER else "")
317+
"""AutoSplit Version number"""
318318
GITHUB_REPOSITORY = AUTOSPLIT_GITHUB_REPOSITORY

0 commit comments

Comments
 (0)