Skip to content

Commit

Permalink
Release version 0.0.0.dev348
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Nov 7, 2024
1 parent 21d75ee commit 388f22e
Show file tree
Hide file tree
Showing 11 changed files with 727 additions and 355 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev347"
version = "0.0.0.dev348"
name = "ControlMan"
dependencies = [
"packaging >= 23.2, < 24",
Expand Down
6 changes: 6 additions & 0 deletions src/controlman/_data/schema/def/branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ properties:
- prerelease/v
- dev/
- auto-update/
name_separator:
description: |
Separator between the branch prefix and suffixes.
This is only used when the branch name is a prefix.
type: string
default: "/"
ruleset:
title: Ruleset
description: Branch protection rules for the branch (group).
Expand Down
1 change: 0 additions & 1 deletion src/controlman/_data/schema/def/commit-auto.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ $schema: https://json-schema.org/draft/2020-12/schema
title: Automatic Commit
description: |
Configurations for an automatic commit.
unevaluatedProperties: false
allOf:
- $ref: https://controlman.repodynamics.com/schema/commit
- required: [ description ]
Expand Down
13 changes: 13 additions & 0 deletions src/controlman/_data/schema/def/gh-release-asset.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
$id: https://controlman.repodynamics.com/schema/gh-release-asset
$schema: https://json-schema.org/draft/2020-12/schema
title: GitHub Release Asset
description: Configurations for a GitHub release asset.
type: object
required: [ name ]
properties:
name:
description: File name of the asset.
$ref: https://jsonschemata.repodynamics.com/string/oneline
label:
description: Label of the asset.
$ref: https://jsonschemata.repodynamics.com/string/oneline
139 changes: 0 additions & 139 deletions src/controlman/_data/schema/def/identifier-related.yaml

This file was deleted.

44 changes: 0 additions & 44 deletions src/controlman/_data/schema/def/job-scheduled.yaml

This file was deleted.

17 changes: 13 additions & 4 deletions src/controlman/_data/schema/def/workflow-artifact.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
$id: https://controlman.repodynamics.com/schema/workflow-artifact
$schema: https://json-schema.org/draft/2020-12/schema
title: Workflow Artifact
description: Configurations for a workflow artifact.
title: GitHub Actions Artifact
description: Configurations for a GitHub Actions artifact.
type: object
required: [ name ]
additionalProperties: false
properties:
name:
description: Name of the artifact
description: Name of the artifact.
$ref: https://jsonschemata.repodynamics.com/string/oneline

retention_days:
description: Number of days to retain the artifact.
type: integer
minimum: 1
maximum: 90
include_hidden_files:
description: Whether to include hidden files in the artifact.
type: boolean
default: false
14 changes: 14 additions & 0 deletions src/controlman/_data/schema/def/workflow-env.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
$id: https://controlman.repodynamics.com/schema/workflow-env
$schema: https://json-schema.org/draft/2020-12/schema
title: GitHub Actions Workflow Environment
description: Configurations for a GitHub Actions workflow environment.
type: object
required: [ name ]
additionalProperties: false
properties:
name:
description: Name of the environment.
$ref: https://jsonschemata.repodynamics.com/string/oneline
url:
description: URL of the environment.
$ref: https://jsonschemata.repodynamics.com/url/http-explicit
Loading

0 comments on commit 388f22e

Please sign in to comment.