Skip to content

Commit bd768b5

Browse files
committed
Allow pipeline to run on create events.
1 parent db7ef27 commit bd768b5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/Pipeline.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Pipeline
22

33
on:
44
push:
5+
create:
56
workflow_dispatch:
67
schedule:
78
# Every Friday at 22:00 - rerun pipeline to check for dependency-based issues

run.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Param(
3232
)
3333

3434
$PackageName = "sphinx_reports"
35-
$PackageVersion = "0.9.2"
35+
$PackageVersion = "0.9.3"
3636

3737
# set default values
3838
$EnableDebug = [bool]$PSCmdlet.MyInvocation.BoundParameters["Debug"]

sphinx_reports/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
__email__ = "[email protected]"
4444
__copyright__ = "2023-2025, Patrick Lehmann"
4545
__license__ = "Apache License, Version 2.0"
46-
__version__ = "0.9.2"
46+
__version__ = "0.9.3"
4747
__keywords__ = [
4848
"Python3", "Sphinx", "Extension", "Report", "doc-string", "interrogate", "Code Coverage", "Coverage",
4949
"Documentation Coverage", "Unittest", "Dependencies", "Summary"

0 commit comments

Comments
 (0)