dycw-actions 0.8.5__py3-none-any.whl → 0.11.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. actions/__init__.py +1 -1
  2. actions/clean_dir/lib.py +5 -12
  3. actions/cli.py +18 -2
  4. actions/constants.py +2 -4
  5. actions/git_clone_with/__init__.py +1 -0
  6. actions/git_clone_with/cli.py +41 -0
  7. actions/git_clone_with/constants.py +7 -0
  8. actions/git_clone_with/lib.py +78 -0
  9. actions/git_clone_with/settings.py +20 -0
  10. actions/pre_commit/conformalize_repo/action_dicts.py +40 -41
  11. actions/pre_commit/conformalize_repo/cli.py +16 -3
  12. actions/pre_commit/conformalize_repo/constants.py +7 -3
  13. actions/pre_commit/conformalize_repo/lib.py +243 -163
  14. actions/pre_commit/conformalize_repo/settings.py +43 -11
  15. actions/pre_commit/constants.py +4 -1
  16. actions/pre_commit/format_requirements/lib.py +5 -10
  17. actions/pre_commit/replace_sequence_strs/lib.py +5 -10
  18. actions/pre_commit/touch_empty_py/lib.py +8 -14
  19. actions/pre_commit/touch_py_typed/lib.py +8 -13
  20. actions/pre_commit/update_requirements/lib.py +5 -11
  21. actions/pre_commit/utilities.py +83 -72
  22. actions/publish_package/lib.py +12 -16
  23. actions/random_sleep/cli.py +2 -2
  24. actions/random_sleep/lib.py +9 -18
  25. actions/register_gitea_runner/configs/entrypoint.sh +8 -8
  26. actions/register_gitea_runner/lib.py +23 -30
  27. actions/run_hooks/lib.py +11 -15
  28. actions/setup_cronjob/lib.py +16 -24
  29. actions/setup_ssh_config/__init__.py +1 -0
  30. actions/setup_ssh_config/cli.py +17 -0
  31. actions/setup_ssh_config/constants.py +7 -0
  32. actions/setup_ssh_config/lib.py +30 -0
  33. actions/tag_commit/lib.py +12 -16
  34. actions/utilities.py +7 -0
  35. {dycw_actions-0.8.5.dist-info → dycw_actions-0.11.3.dist-info}/METADATA +4 -3
  36. {dycw_actions-0.8.5.dist-info → dycw_actions-0.11.3.dist-info}/RECORD +38 -29
  37. {dycw_actions-0.8.5.dist-info → dycw_actions-0.11.3.dist-info}/WHEEL +1 -1
  38. {dycw_actions-0.8.5.dist-info → dycw_actions-0.11.3.dist-info}/entry_points.txt +0 -0
@@ -7,8 +7,9 @@ from typing import TYPE_CHECKING
7
7
 
8
8
  from requests import get
9
9
  from utilities.atomicwrites import writer
10
- from utilities.subprocess import chmod, ssh
11
- from utilities.text import strip_and_dedent
10
+ from utilities.functions import get_func_name
11
+ from utilities.subprocess import chmod, rm_cmd, ssh, sudo_cmd
12
+ from utilities.tabulate import func_param_desc
12
13
 
13
14
  from actions import __version__
14
15
  from actions.logging import LOGGER
@@ -40,31 +41,20 @@ def register_gitea_runner(
40
41
  ) -> None:
41
42
  """Register against a remote instance of Gitea."""
42
43
  LOGGER.info(
43
- strip_and_dedent("""
44
- Running '%s' (version %s) with settings:
45
- - ssh_user = %s
46
- - ssh_host = %s
47
- - gitea_container_user = %s
48
- - gitea_container_name = %s
49
- - runner_certificate = %s
50
- - runner_capacity = %d
51
- - runner_container_name = %s
52
- - gitea_host = %s
53
- - gitea_port = %d
54
- - runner_instance_name = %s
55
- """),
56
- register_gitea_runner.__name__,
57
- __version__,
58
- ssh_user,
59
- ssh_host,
60
- gitea_container_user,
61
- gitea_container_name,
62
- runner_certificate,
63
- runner_capacity,
64
- runner_container_name,
65
- gitea_host,
66
- gitea_port,
67
- runner_instance_name,
44
+ func_param_desc(
45
+ register_gitea_runner,
46
+ __version__,
47
+ f"{ssh_user=}",
48
+ f"{ssh_host=}",
49
+ f"{gitea_container_user=}",
50
+ f"{gitea_container_name=}",
51
+ f"{runner_certificate=}",
52
+ f"{runner_capacity=}",
53
+ f"{runner_container_name=}",
54
+ f"{gitea_host=}",
55
+ f"{gitea_port=}",
56
+ f"{runner_instance_name=}",
57
+ )
68
58
  )
69
59
  token = ssh(
70
60
  ssh_user,
@@ -82,6 +72,7 @@ def register_gitea_runner(
82
72
  gitea_port=gitea_port,
83
73
  runner_instance_name=runner_instance_name,
84
74
  )
75
+ LOGGER.info("Finished running %r", get_func_name(register_gitea_runner))
85
76
 
86
77
 
87
78
  def register_against_local(
@@ -171,6 +162,8 @@ def _docker_run_act_runner_args(
171
162
  f"GITEA_RUNNER_REGISTRATION_TOKEN={token}",
172
163
  "--name",
173
164
  container_name,
165
+ "--restart",
166
+ "always",
174
167
  "--volume",
175
168
  "/var/run/docker.sock:/var/run/docker.sock",
176
169
  "--volume",
@@ -237,7 +230,8 @@ def _start_runner(
237
230
  _write_config(token, capacity=runner_capacity, certificate=runner_certificate)
238
231
  _write_entrypoint(host=gitea_host, port=gitea_port)
239
232
  _write_wait_for_it()
240
- logged_run(*_docker_stop_runner_args(name=runner_container_name), print=True)
233
+ logged_run(*_docker_stop_runner_args(name=runner_container_name))
234
+ logged_run(*sudo_cmd(*rm_cmd("data")))
241
235
  logged_run(
242
236
  *_docker_run_act_runner_args(
243
237
  token,
@@ -246,8 +240,7 @@ def _start_runner(
246
240
  runner_certificate=runner_certificate,
247
241
  instance_name=runner_instance_name,
248
242
  container_name=runner_container_name,
249
- ),
250
- print=True,
243
+ )
251
244
  )
252
245
 
253
246
 
actions/run_hooks/lib.py CHANGED
@@ -7,8 +7,8 @@ from re import search
7
7
  from subprocess import CalledProcessError
8
8
  from typing import TYPE_CHECKING, Any
9
9
 
10
- from utilities.functions import ensure_class, ensure_str
11
- from utilities.text import strip_and_dedent
10
+ from utilities.functions import ensure_class, ensure_str, get_func_name
11
+ from utilities.tabulate import func_param_desc
12
12
  from whenever import TimeDelta
13
13
  from yaml import safe_load
14
14
 
@@ -29,19 +29,14 @@ def run_hooks(
29
29
  sleep: int = SETTINGS.sleep,
30
30
  ) -> None:
31
31
  LOGGER.info(
32
- strip_and_dedent("""
33
- Running '%s' (version %s) with settings:
34
- - repos = %s
35
- - hooks = %s
36
- - hooks_exclude = %s
37
- - sleep = %d
38
- """),
39
- run_hooks.__name__,
40
- __version__,
41
- repos,
42
- hooks,
43
- hooks_exclude,
44
- sleep,
32
+ func_param_desc(
33
+ run_hooks,
34
+ __version__,
35
+ f"{repos=}",
36
+ f"{hooks=}",
37
+ f"{hooks_exclude=}",
38
+ f"{sleep=}",
39
+ )
45
40
  )
46
41
  results = {
47
42
  hook: _run_hook(hook, sleep=sleep)
@@ -51,6 +46,7 @@ def run_hooks(
51
46
  if len(failed) >= 1:
52
47
  msg = f"Failed hook(s): {', '.join(failed)}"
53
48
  raise RuntimeError(msg)
49
+ LOGGER.info("Finished running %r", get_func_name(run_hooks))
54
50
 
55
51
 
56
52
  def _yield_hooks(
@@ -3,9 +3,10 @@ from __future__ import annotations
3
3
  from string import Template
4
4
  from typing import TYPE_CHECKING
5
5
 
6
+ from utilities.functions import get_func_name
6
7
  from utilities.platform import SYSTEM
7
8
  from utilities.subprocess import chmod, chown, tee
8
- from utilities.text import strip_and_dedent
9
+ from utilities.tabulate import func_param_desc
9
10
 
10
11
  from actions import __version__
11
12
  from actions.logging import LOGGER
@@ -32,29 +33,19 @@ def setup_cronjob(
32
33
  ) -> None:
33
34
  """Set up a cronjob & logrotate."""
34
35
  LOGGER.info(
35
- strip_and_dedent("""
36
- Running '%s' (version %s) with settings:
37
- - name = %s
38
- - prepend_path = %s
39
- - schedule = %s
40
- - user = %s
41
- - timeout = %d
42
- - kill_after = %d
43
- - command = %s
44
- - args = %s
45
- - logs_keep = %d
46
- """),
47
- setup_cronjob.__name__,
48
- __version__,
49
- name,
50
- prepend_path,
51
- schedule,
52
- user,
53
- timeout,
54
- kill_after,
55
- command,
56
- args,
57
- logs_keep,
36
+ func_param_desc(
37
+ setup_cronjob,
38
+ __version__,
39
+ f"{name=}",
40
+ f"{prepend_path=}",
41
+ f"{schedule=}",
42
+ f"{user=}",
43
+ f"{timeout=}",
44
+ f"{kill_after=}",
45
+ f"{command=}",
46
+ f"{args=}",
47
+ f"{logs_keep=}",
48
+ )
58
49
  )
59
50
  if SYSTEM != "linux":
60
51
  msg = f"System must be 'linux'; got {SYSTEM!r}"
@@ -75,6 +66,7 @@ def setup_cronjob(
75
66
  _tee_and_perms(
76
67
  f"/etc/logrotate.d/{name}", _get_logrotate(name=name, logs_keep=logs_keep)
77
68
  )
69
+ LOGGER.info("Finished running %r", get_func_name(setup_cronjob))
78
70
 
79
71
 
80
72
  def _get_crontab(
@@ -0,0 +1 @@
1
+ from __future__ import annotations
@@ -0,0 +1,17 @@
1
+ from __future__ import annotations
2
+
3
+ from utilities.logging import basic_config
4
+ from utilities.os import is_pytest
5
+
6
+ from actions.logging import LOGGER
7
+ from actions.setup_ssh_config.lib import setup_ssh_config
8
+
9
+
10
+ def setup_ssh_config_sub_cmd() -> None:
11
+ if is_pytest():
12
+ return
13
+ basic_config(obj=LOGGER)
14
+ setup_ssh_config()
15
+
16
+
17
+ __all__ = ["setup_ssh_config_sub_cmd"]
@@ -0,0 +1,7 @@
1
+ from __future__ import annotations
2
+
3
+ SETUP_SSH_CONFIG_DOCSTRING = "Setup '.ssh/config.d'"
4
+ SETUP_SSH_CONFIG_SUB_CMD = "setup-ssh-config"
5
+
6
+
7
+ __all__ = ["SETUP_SSH_CONFIG_DOCSTRING", "SETUP_SSH_CONFIG_SUB_CMD"]
@@ -0,0 +1,30 @@
1
+ from __future__ import annotations
2
+
3
+ from typing import TYPE_CHECKING
4
+
5
+ from utilities.atomicwrites import writer
6
+ from utilities.functions import get_func_name
7
+ from utilities.tabulate import func_param_desc
8
+
9
+ from actions import __version__
10
+ from actions.constants import SSH
11
+ from actions.logging import LOGGER
12
+
13
+ if TYPE_CHECKING:
14
+ from pathlib import Path
15
+
16
+
17
+ def setup_ssh_config() -> None:
18
+ LOGGER.info(func_param_desc(setup_ssh_config, __version__))
19
+ path = get_ssh_config("*")
20
+ with writer(SSH / "config", overwrite=True) as temp:
21
+ _ = temp.write_text(f"Include {path}")
22
+ path.parent.mkdir(parents=True, exist_ok=True)
23
+ LOGGER.info("Finished running %r", get_func_name(setup_ssh_config))
24
+
25
+
26
+ def get_ssh_config(stem: str, /) -> Path:
27
+ return SSH / "config.d" / f"{stem}.conf"
28
+
29
+
30
+ __all__ = ["setup_ssh_config"]
actions/tag_commit/lib.py CHANGED
@@ -3,7 +3,8 @@ from __future__ import annotations
3
3
  from contextlib import suppress
4
4
  from subprocess import CalledProcessError
5
5
 
6
- from utilities.text import strip_and_dedent
6
+ from utilities.functions import get_func_name
7
+ from utilities.tabulate import func_param_desc
7
8
  from utilities.version import parse_version
8
9
 
9
10
  from actions import __version__
@@ -21,21 +22,15 @@ def tag_commit(
21
22
  latest: bool = SETTINGS.latest,
22
23
  ) -> None:
23
24
  LOGGER.info(
24
- strip_and_dedent("""
25
- Running '%s' (version %s) with settings:
26
- - user_name = %s
27
- - user_email = %s
28
- - major_minor = %s
29
- - major = %s
30
- - latest = %s
31
- """),
32
- tag_commit.__name__,
33
- __version__,
34
- user_name,
35
- user_email,
36
- major_minor,
37
- major,
38
- latest,
25
+ func_param_desc(
26
+ tag_commit,
27
+ __version__,
28
+ f"{user_name=}",
29
+ f"{user_email=}",
30
+ f"{major_minor=}",
31
+ f"{major=}",
32
+ f"{latest=}",
33
+ )
39
34
  )
40
35
  logged_run("git", "config", "--global", "user.name", user_name)
41
36
  logged_run("git", "config", "--global", "user.email", user_email)
@@ -49,6 +44,7 @@ def tag_commit(
49
44
  _tag(str(version.major))
50
45
  if latest:
51
46
  _tag("latest")
47
+ LOGGER.info("Finished running %r", get_func_name(tag_commit))
52
48
 
53
49
 
54
50
  def _tag(version: str, /) -> None:
actions/utilities.py CHANGED
@@ -7,6 +7,7 @@ from typing import TYPE_CHECKING, Any, Literal, assert_never, overload
7
7
  from typed_settings import EnvLoader, Secret
8
8
  from utilities.atomicwrites import writer
9
9
  from utilities.subprocess import run
10
+ from utilities.text import split_str
10
11
 
11
12
  from actions.constants import YAML_INSTANCE
12
13
  from actions.logging import LOGGER
@@ -131,6 +132,11 @@ def logged_run(
131
132
  return run(*unwrapped, env=env, print=print, return_=return_, logger=LOGGER)
132
133
 
133
134
 
135
+ def split_f_str_equals(text: str, /) -> tuple[str, str]:
136
+ """Split an `f`-string with `=`."""
137
+ return split_str(text, separator="=", n=2)
138
+
139
+
134
140
  def write_text(
135
141
  path: PathLike, text: str, /, *, modifications: MutableSet[Path] | None = None
136
142
  ) -> None:
@@ -159,6 +165,7 @@ __all__ = [
159
165
  "copy_text",
160
166
  "ensure_new_line",
161
167
  "logged_run",
168
+ "split_f_str_equals",
162
169
  "write_text",
163
170
  "yaml_dump",
164
171
  ]
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dycw-actions
3
- Version: 0.8.5
3
+ Version: 0.11.3
4
4
  Summary: Library of actions
5
5
  Requires-Dist: click>=8.3.1,<9
6
- Requires-Dist: dycw-utilities>=0.179.0,<1
6
+ Requires-Dist: dycw-utilities>=0.179.3,<1
7
7
  Requires-Dist: inflect>=7.5.0,<8
8
8
  Requires-Dist: libcst>=1.8.6,<2
9
9
  Requires-Dist: packaging>=25.0,<26
@@ -12,7 +12,8 @@ Requires-Dist: pyyaml>=6.0.3,<7
12
12
  Requires-Dist: requests>=2.32.5,<3
13
13
  Requires-Dist: rich>=14.2.0,<15
14
14
  Requires-Dist: ruamel-yaml>=0.19.1,<1
15
- Requires-Dist: tomlkit>=0.13.3,<1
15
+ Requires-Dist: tabulate>=0.9.0,<1
16
+ Requires-Dist: tomlkit>=0.14.0,<1
16
17
  Requires-Dist: typed-settings[attrs,click]>=25.3.0,<26
17
18
  Requires-Dist: xdg-base-dirs>=6.0.2,<7
18
19
  Requires-Python: >=3.12
@@ -1,82 +1,91 @@
1
- actions/__init__.py,sha256=OlKKXmurpRa7hpnMwsqC-3AVjanBWghNU3iQC6jDLXg,58
1
+ actions/__init__.py,sha256=A7kvce4fHYgV1tEVj_d1Ynre-ZheJHHRqpWXzriT7ko,59
2
2
  actions/clean_dir/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
3
3
  actions/clean_dir/cli.py,sha256=OrFA2nEN2LyGF22mhTNEBr7KSuKgX54sGy9RyE73qUc,569
4
4
  actions/clean_dir/constants.py,sha256=aDNaYtemEv3lcMXo96Oh4pw_HASMby1GZC1D_gbjPAc,167
5
- actions/clean_dir/lib.py,sha256=7_-QbvB9Bq2veEl4eYWkBBWN0jSNrjGVlx1gLWS1PwU,1606
5
+ actions/clean_dir/lib.py,sha256=0B8Le09FxAjAFckh69Sq2GPWVN2-asuWRYK9oSWA7sg,1523
6
6
  actions/clean_dir/settings.py,sha256=mqM0Oq-yz4dXKcUi3JmOCvDhoeBNQm_Qe70cGmhdcQE,345
7
- actions/cli.py,sha256=J9k7_BQzgDHdgzkTqwXVzncRMHm0eAT0WW_c_gAUFlE,4441
8
- actions/constants.py,sha256=C_eTTPwNJRjXV5BkFqdHMC2yQW86-iNTOCZjHYkMix0,1776
7
+ actions/cli.py,sha256=vbFMcS0ndfMP57905WMYQQT-V6DuvYyVtxk6zZzxGP4,5074
8
+ actions/constants.py,sha256=sBspUPK_Wi5hEx_Ro43ACdnW1YtlTC2H4qk7NaGur8w,1646
9
+ actions/git_clone_with/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
10
+ actions/git_clone_with/cli.py,sha256=vJY6-jxpnxc6N-Gm7s75iKxiPju0JJqbUs66YTrJFAw,1086
11
+ actions/git_clone_with/constants.py,sha256=Fi_w-TZbehvsMZj2VvhumtCK41VTyut2m-fGg-kxvAA,211
12
+ actions/git_clone_with/lib.py,sha256=UC_jYAaBCNJaMZ3BbEITrg73S_Jk7tWTLkNVHqmETEs,2075
13
+ actions/git_clone_with/settings.py,sha256=MnkrVS9OpGpS7gq-pEeJKIwC3EYRfXggtdHtN0fucPM,479
9
14
  actions/logging.py,sha256=rMTcQMGndUHTCaXXtyOHt_VXUMhQGRHoN7okpoX0y5I,120
10
15
  actions/pre_commit/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
11
16
  actions/pre_commit/click.py,sha256=BLHjkO0gIW7rgLabuWnszwXmI4yb8Li5D8gt81GR-FQ,270
12
17
  actions/pre_commit/conformalize_repo/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
13
- actions/pre_commit/conformalize_repo/action_dicts.py,sha256=6KVL5xeQ8fSAjPpgRnDmKV9lsqqJJND7VvHNBqMgjs8,7605
14
- actions/pre_commit/conformalize_repo/cli.py,sha256=1og2QndEIvOgub_az3Nk3KOLWSaae6eARpBMw22eUu4,2891
18
+ actions/pre_commit/conformalize_repo/action_dicts.py,sha256=DnOaGdWhGiSgdlh9wINmt6lVKsdTIUO8O-Cvi4mFIgE,8218
19
+ actions/pre_commit/conformalize_repo/cli.py,sha256=u7mzsQ-JlPLpleD4rhNSZGJxVlsK_akD3DdoRv5aK7U,4079
15
20
  actions/pre_commit/conformalize_repo/configs/gitignore,sha256=8YCRPwysCD8-67yFXaTg6O8TTl4xeNIh7_DVmaU5Ix0,5063
16
- actions/pre_commit/conformalize_repo/constants.py,sha256=s96CbNkfghrxQSJSWSOGuqWs-XjpwLyJBwKDlb-YdUY,1136
17
- actions/pre_commit/conformalize_repo/lib.py,sha256=ur2gDK3MwB5Vnb6Zb33alXobgN55tQgECkjd9AfXpfU,50348
18
- actions/pre_commit/conformalize_repo/settings.py,sha256=SDP34Ux75Db1MEsHpXx52bEJuqA03xKTYulJX1wvl4g,5338
19
- actions/pre_commit/constants.py,sha256=NBJ5GBMg5qhMAhAfxx1FKw0CdPwW_wG2cUJJ0dkF5HE,158
21
+ actions/pre_commit/conformalize_repo/constants.py,sha256=Ct44YCQBF35qdY415xDMfTkQHAFvIcOsLvmRXxIxR1Y,1233
22
+ actions/pre_commit/conformalize_repo/lib.py,sha256=3iQHztcxbQ4CIW4ff2ENYT-agxP4MSADQzC4JZR3fGk,53881
23
+ actions/pre_commit/conformalize_repo/settings.py,sha256=0R0J6_VQncHcbrgLQ7eGLMcWSY8ZwMP1PBc0pwcVSiI,6867
24
+ actions/pre_commit/constants.py,sha256=gjwIj79hyQIkHUNV30k2U8FgyS0PkCyWPIOwVQv_NK0,240
20
25
  actions/pre_commit/format_requirements/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
21
26
  actions/pre_commit/format_requirements/cli.py,sha256=c9UdOFDLEei5AEzrVvo6FopIEOf2EqyOliA-bOR5a2o,584
22
27
  actions/pre_commit/format_requirements/constants.py,sha256=ly41jgwq0VVyHQqHaIXRc5ZmbWrNY_C3ET4G9gtE7rI,228
23
- actions/pre_commit/format_requirements/lib.py,sha256=AGgtJ-4fBesv-BSFYExLu5rcLV6hfElVk1IxNtCXIAs,1399
28
+ actions/pre_commit/format_requirements/lib.py,sha256=BPRlgml-h9Jj8R9WBujjl0JY8xjC1UONviAF8JlShWo,1410
24
29
  actions/pre_commit/replace_sequence_strs/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
25
30
  actions/pre_commit/replace_sequence_strs/cli.py,sha256=S8T-p0ex5lLmJz-5G7xDwPYnrwV82mf8UtwWtLIr36E,594
26
31
  actions/pre_commit/replace_sequence_strs/constants.py,sha256=yEEgJUpw3URzv8Cb4nIgBY2xAzEfJIF6yzyUy6K55J4,250
27
- actions/pre_commit/replace_sequence_strs/lib.py,sha256=FzfwYeL3bhTCYbb1T-Yk1NtdH3SFNKFC2x0JgdT4bXA,2166
32
+ actions/pre_commit/replace_sequence_strs/lib.py,sha256=2OU5vl4tGGfJZjJVPyvdsE7pRv8bKG-FP_d0Aa5m3rA,2179
28
33
  actions/pre_commit/touch_empty_py/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
29
34
  actions/pre_commit/touch_empty_py/cli.py,sha256=s2S5OfAGcSLtd2aGm1ooa1k20oNK-LQ1PZWz6T30vO8,559
30
35
  actions/pre_commit/touch_empty_py/constants.py,sha256=zSwH60zfn9RhIAbBFnXjHrm2s1nFpPUskX3CZuJpQLk,198
31
- actions/pre_commit/touch_empty_py/lib.py,sha256=jxT6CRZ3rrBatk3o-D0xDXon3a-G02sCvdMSNuRvCv0,1706
36
+ actions/pre_commit/touch_empty_py/lib.py,sha256=MQhI4s4A5oQHqYhBlfMrzThupWwAyUpzwA5xOKc8I1Q,1698
32
37
  actions/pre_commit/touch_py_typed/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
33
38
  actions/pre_commit/touch_py_typed/cli.py,sha256=CDJV4NuUHJlSdJ84dY0XvdwYHMdqygZ7C6x07B-iN3E,559
34
39
  actions/pre_commit/touch_py_typed/constants.py,sha256=kLZOm_wgypp7MaXRYq-6AZqVE4OttOMKmUqt11V2zn0,191
35
- actions/pre_commit/touch_py_typed/lib.py,sha256=8crPXxI6CwudW13RIJrn3YtrFcZsspyJnTmNRHz4TaU,2020
40
+ actions/pre_commit/touch_py_typed/lib.py,sha256=nxbdOH-fqOsMl2ucmWW-iP65IlNnfOemYWnaQSpC59A,2052
36
41
  actions/pre_commit/update_requirements/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
37
42
  actions/pre_commit/update_requirements/classes.py,sha256=ERC70c1CxQ3rOsQaEtp6FGbK_VaJ4K0jAV5XTB5-L30,3486
38
43
  actions/pre_commit/update_requirements/cli.py,sha256=CBfm8M7hwSRw8KS6ttiNE86IFHJ52V42AxlfakqTDN0,584
39
44
  actions/pre_commit/update_requirements/constants.py,sha256=ve44_RYed_41ckgQNPkb08u7Y1cpLpzutGSL9FdGBF8,228
40
- actions/pre_commit/update_requirements/lib.py,sha256=Wh8Lq6s_YJv4sDoUUMB-HuP0Ysm9nHePX7_xZ81o7Pk,4590
41
- actions/pre_commit/utilities.py,sha256=VLh2tC9NNI60Uwx-ze3uuqKgOJ1OvFCvzYjDWM5o0Js,11397
45
+ actions/pre_commit/update_requirements/lib.py,sha256=oWi2JbnZUCvb1N8GIwdnCZ-ugbqAj0z_HI8MYJQ1ml0,4570
46
+ actions/pre_commit/utilities.py,sha256=myONOjsgKTo-AwytcLEGGuQ9fmMvBo5MqK3NRvGPx_g,11668
42
47
  actions/publish_package/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
43
48
  actions/publish_package/cli.py,sha256=nAPHCq67mxUb3yHepVGcoQ69qgaQahM1-cxdbHfxQg0,803
44
49
  actions/publish_package/constants.py,sha256=C68ZCVL_jVlYdLGpOK6saZccWoFy5AmC_NMBIWYdYOE,209
45
- actions/publish_package/lib.py,sha256=WSGpXtZsTWL5tkoih4VTKLvtX6B8KmsO1jolT83S22A,1754
50
+ actions/publish_package/lib.py,sha256=ceEK1ee4-LW-t9JP5NKpOAvxapj3a8PoNhkfoCo43MI,1667
46
51
  actions/publish_package/settings.py,sha256=UucS_yb-es9bDz0EPeWTIql6B1Dr4kcaEMdXpt23BNQ,935
47
52
  actions/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
53
  actions/random_sleep/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
49
- actions/random_sleep/cli.py,sha256=-d9y63oWgvQtNp9j_8v3zt5gKl-GrUq8-b3Ky52R42c,693
54
+ actions/random_sleep/cli.py,sha256=XZkgOdr9wSItM2uH1o5l-dnwFPKI6X5XZdtXwc_K3cM,691
50
55
  actions/random_sleep/constants.py,sha256=5GMqCD1f12uyKDVTZBbnDDn6TQa99mUYZb9p-crg5BA,190
51
- actions/random_sleep/lib.py,sha256=JzgpeEONdKXSBeNc3ex9goVyJR3bsa76lB_tkH1Ggc0,1762
56
+ actions/random_sleep/lib.py,sha256=uVNUxJ0Iupd5NegS5tzzBE38Ut1nojnrlDnbujIa9Ws,1651
52
57
  actions/random_sleep/settings.py,sha256=F8gO2j2EEX8moemwhWWCPdRuOpZ_qLtqzSfWhjIy3P8,529
53
58
  actions/register_gitea_runner/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
54
59
  actions/register_gitea_runner/cli.py,sha256=70RUyzKCZHxyDRMFwCAwDC0LDsUZxBi2T6ctzbFlpc8,1129
55
60
  actions/register_gitea_runner/configs/config.yml,sha256=0kpaqAjMRDqdSxkSK8ydOk2IsrlkB4cUkYmbkHAurrg,5683
56
- actions/register_gitea_runner/configs/entrypoint.sh,sha256=IN40hAu8ufyyFWPIgsX_hWp0ZZZ0c36czCaqmECjBrw,476
61
+ actions/register_gitea_runner/configs/entrypoint.sh,sha256=k0K9M38oj3AGHahE1a2011sPoRmYP6Lzu1hvbkjAesw,452
57
62
  actions/register_gitea_runner/constants.py,sha256=wX1f5qvhIXngBVWbIQRoIaXIdPaUByvG8HS8P0WcCGM,694
58
- actions/register_gitea_runner/lib.py,sha256=ouc5XGfFRnAQNzU238U0_oVTdmdGEIrOW8lggqXsogM,8853
63
+ actions/register_gitea_runner/lib.py,sha256=I8F-CVETA6Jj9Dc9gzXt0DCVjAgrO_-blMdN-3sS8ds,8664
59
64
  actions/register_gitea_runner/settings.py,sha256=0UQm8M3qDiBE3jiE333M4FdLjikNAzpc9gk_VlzI0s8,1149
60
65
  actions/run_hooks/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
61
66
  actions/run_hooks/cli.py,sha256=xKBw6iIlHpUlHl6-QWQLSL6KKVjnsihBeJ7h58Rl8P4,616
62
67
  actions/run_hooks/constants.py,sha256=JRhDk08qbzo5C-zwHdXZV5ajvNSKh4GcOcBvOIY6IGU,172
63
- actions/run_hooks/lib.py,sha256=_IXK6uzKpXyyky6D0oYLjXoRLHsbA1pvTk_bcdY26RU,3259
68
+ actions/run_hooks/lib.py,sha256=HzK0Q5v82c2ByqPrXAflo_w44mhz6_gmmUuNDr4xops,3184
64
69
  actions/run_hooks/settings.py,sha256=Cj6QVK6JspzOp6-1CaOENlXbg25kvgPXG4FKWgIiDgY,740
65
70
  actions/setup_cronjob/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
66
71
  actions/setup_cronjob/cli.py,sha256=l6t2WjCUprACV0rY8kHvpHLt3LgMI4q2XY4AEOiutkk,891
67
72
  actions/setup_cronjob/configs/cron.tmpl,sha256=UD_d0LYlB6tbkXAcUTzpGDWVNgIhCR45Jgky91iSCP8,412
68
73
  actions/setup_cronjob/configs/logrotate.tmpl,sha256=kkMuCRe4l03er6cFmRI0CXerHYmDumnMXLGKBjXLVxo,137
69
74
  actions/setup_cronjob/constants.py,sha256=CNebyWFymrXBx3X9X7XXpU9PSd5wzUN6XkUVomSBnWQ,301
70
- actions/setup_cronjob/lib.py,sha256=p6ndCc4e01pS-aLK_Qqn26qSto9krt26cOR23m4YiYg,3411
75
+ actions/setup_cronjob/lib.py,sha256=Xyezg08q_lJhlhNoD24iiwujqZOPJT4vnyVbpfo2CdQ,3260
71
76
  actions/setup_cronjob/settings.py,sha256=SxSe25f0sHUgq2-xdJN6rbbaSVFQE7FuEisiO_fmZNw,990
77
+ actions/setup_ssh_config/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
78
+ actions/setup_ssh_config/cli.py,sha256=lVmMQ1CcSifPVMgQl-nVsFTpLyBvDaFPKYJejhT0zaY,378
79
+ actions/setup_ssh_config/constants.py,sha256=ZWMmq2uBSKUKppD0pmaZ5JSCX2Ty5wJhTHSsS05ygiU,206
80
+ actions/setup_ssh_config/lib.py,sha256=qaZFkOKgI9W0Q2YVPZ7JZQS8eGbqmSWBOuyai56JuBs,833
72
81
  actions/tag_commit/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
73
82
  actions/tag_commit/cli.py,sha256=1E6cM0XKTCt_Ukb7pxqOojHpJjoa63dVBO6DXoESe9Q,745
74
83
  actions/tag_commit/constants.py,sha256=ceOvQpY4dgtJSd7v_jI1V00S0SjRq2ToGeZu41-DL7M,176
75
- actions/tag_commit/lib.py,sha256=rq1SqAkNp98cPsNOsFY4F1D6nNi7N3wqVbFPno8lsuI,1849
84
+ actions/tag_commit/lib.py,sha256=1jwduvr_WpDXPVrNFEW-uPmrhndPzenh8wkZ_MNK68U,1792
76
85
  actions/tag_commit/settings.py,sha256=TOeKG_GODP--2lBSyGzH_M32jDIfh4vk_Ts06R3_ak4,629
77
86
  actions/types.py,sha256=1P3oAnYxyKgAfv8986jZ6whwdHV0qLHoX0oR8brviQk,586
78
- actions/utilities.py,sha256=VpFLBiAezgSRlm9dvnyPyQohreaV2Lv7cJ9HAxqZ4WI,4086
79
- dycw_actions-0.8.5.dist-info/WHEEL,sha256=KSLUh82mDPEPk0Bx0ScXlWL64bc8KmzIPNcpQZFV-6E,79
80
- dycw_actions-0.8.5.dist-info/entry_points.txt,sha256=2Uu7wAZOm0mmcsGBEsGB370HAWgVWECRFJ9rKgfC3-I,46
81
- dycw_actions-0.8.5.dist-info/METADATA,sha256=_wo_GxdFbHJzLCgdaBRLKBe-TwFpIuQZ9e0MyWHptUY,654
82
- dycw_actions-0.8.5.dist-info/RECORD,,
87
+ actions/utilities.py,sha256=BKQOfuVH0U43F6jLpy1vG6L1AwSAPcqoqyXbPbjEiFY,4295
88
+ dycw_actions-0.11.3.dist-info/WHEEL,sha256=eycQt0QpYmJMLKpE3X9iDk8R04v2ZF0x82ogq-zP6bQ,79
89
+ dycw_actions-0.11.3.dist-info/entry_points.txt,sha256=2Uu7wAZOm0mmcsGBEsGB370HAWgVWECRFJ9rKgfC3-I,46
90
+ dycw_actions-0.11.3.dist-info/METADATA,sha256=RlgGjDgh8s01cbBRWH6OW8BQozM_5YePOYdtS0wcyzA,689
91
+ dycw_actions-0.11.3.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.9.22
2
+ Generator: uv 0.9.24
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any