Skip to content

Commit 769f499

Browse files
br3ndonlandwebknjaz
authored andcommitted
Fix pre-commit errors
1 parent 9756850 commit 769f499

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.github/actions/run-docker-container/action.yml

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,38 @@
11
---
22
name: 🏃
3+
description: >-
4+
Run Docker container to
5+
upload Python distribution packages to PyPI
36
inputs:
47
user:
8+
description: PyPI user
59
required: false
610
password:
11+
description: Password for your PyPI user or an access token
712
required: false
813
repository-url:
14+
description: The repository URL to use
915
required: false
1016
packages-dir:
17+
description: The target directory for distribution
1118
required: false
1219
verify-metadata:
20+
description: Check metadata before uploading
1321
required: false
1422
skip-existing:
23+
description: >-
24+
Do not fail if a Python package distribution
25+
exists in the target package index
1526
required: false
1627
verbose:
28+
description: Show verbose output.
1729
required: false
1830
print-hash:
31+
description: Show hash values of files to be uploaded
1932
required: false
2033
runs:
2134
using: docker
22-
image: {{image}}
35+
image: "{{image}}"
2336
args:
2437
- ${{ inputs.user }}
2538
- ${{ inputs.password }}

.github/workflows/build-and-push-docker-image.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on: # yamllint disable-line rule:truthy
1111
jobs:
1212
build-and-push:
1313
runs-on: ubuntu-latest
14+
timeout-minutes: 10
1415
steps:
1516
- uses: actions/checkout@v4
1617
- name: Build Docker image

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repos:
3131
args:
3232
- --builtin-schema
3333
- github-workflows-require-timeout
34-
files: ^\.github/workflows/[^/]+$
34+
files: ^\.github\/workflows/[^/]+$
3535
types:
3636
- yaml
3737
- id: check-readthedocs

0 commit comments

Comments
 (0)