-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
727 additions
and
355 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
139
src/controlman/_data/schema/def/identifier-related.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.