From 99cc3b2761742154d2ba921bedd54763b4b2f205 Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Fri, 23 Feb 2024 09:47:41 -0500 Subject: [PATCH 1/8] feat: new `branch_protection_rule` event --- .../disabled.schema.json | 14 ++++++++++++++ .../enabled.schema.json | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json create mode 100644 payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json diff --git a/payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json b/payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json new file mode 100644 index 000000000..1ef241ef9 --- /dev/null +++ b/payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json @@ -0,0 +1,14 @@ +{ + "title": "branch protection configuration disabled event", + "$id": "branch_protection_rule$disabled", + "type": "object", + "properties": { + "action": { "type": "string", "enum": ["disabled"] }, + "installation": { "$ref": "common/installation-lite.schema.json" }, + "organization": { "$ref": "common/organization.schema.json" }, + "repository": { "$ref": "common/repository.schema.json" }, + "sender": { "$ref": "common/user.schema.json" } + }, + "required": ["action", "repository", "sender"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json b/payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json new file mode 100644 index 000000000..cdf4be842 --- /dev/null +++ b/payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json @@ -0,0 +1,14 @@ +{ + "title": "branch protection configuration enabled event", + "$id": "branch_protection_rule$enabled", + "type": "object", + "properties": { + "action": { "type": "string", "enum": ["enabled"] }, + "installation": { "$ref": "common/installation-lite.schema.json" }, + "organization": { "$ref": "common/organization.schema.json" }, + "repository": { "$ref": "common/repository.schema.json" }, + "sender": { "$ref": "common/user.schema.json" } + }, + "required": ["action", "repository", "sender"], + "additionalProperties": false +} From da1673885dd46ae84c91bc2d0bd0105dd18260c6 Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Fri, 23 Feb 2024 09:48:48 -0500 Subject: [PATCH 2/8] feat: new `custom_property_values` event --- .../common/custom-property-value.schema.json | 22 ++++++++++ .../common/org-custom-property.schema.json | 44 +++++++++++++++++++ .../custom_property/created.schema.json | 15 +++++++ .../custom_property/deleted.schema.json | 25 +++++++++++ .../updated.schema.json | 31 +++++++++++++ 5 files changed, 137 insertions(+) create mode 100644 payload-schemas/api.github.com/common/custom-property-value.schema.json create mode 100644 payload-schemas/api.github.com/common/org-custom-property.schema.json create mode 100644 payload-schemas/api.github.com/custom_property/created.schema.json create mode 100644 payload-schemas/api.github.com/custom_property/deleted.schema.json create mode 100644 payload-schemas/api.github.com/custom_property_values/updated.schema.json diff --git a/payload-schemas/api.github.com/common/custom-property-value.schema.json b/payload-schemas/api.github.com/common/custom-property-value.schema.json new file mode 100644 index 000000000..15e1e55dd --- /dev/null +++ b/payload-schemas/api.github.com/common/custom-property-value.schema.json @@ -0,0 +1,22 @@ +{ + "title": "Custom Property Value", + "$id": "common/custom-property-value.schema.json", + "description": "Custom property name and associated value", + "type": "object", + "properties": { + "property_name": { + "type": "string", + "description": "The name of the property" + }, + "value": { + "oneOf": [ + { "type": "string" }, + { "type": "array", "items": { "type": "string" } }, + { "type": "null" } + ], + "description": "The value assigned to the property" + } + }, + "required": ["property_name", "value"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/common/org-custom-property.schema.json b/payload-schemas/api.github.com/common/org-custom-property.schema.json new file mode 100644 index 000000000..d74fa2d21 --- /dev/null +++ b/payload-schemas/api.github.com/common/org-custom-property.schema.json @@ -0,0 +1,44 @@ +{ + "title": "Organization Custom Property", + "$id": "common/org-custom-property.schema.json", + "description": "Custom property defined on an organization", + "type": "object", + "properties": { + "property_name": { + "type": "string", + "description": "The name of the property" + }, + "value_type": { + "type": "string", + "enum": ["string", "single_select"], + "description": "The type of the value for the property", + "examples": ["single_select"] + }, + "required": { + "type": "boolean", + "description": "Whether the property is required." + }, + "default_value": { + "type": ["string", "null"], + "description": "Default value of the property" + }, + "description": { + "type": ["string", "null"], + "description": "Short description of the property" + }, + "allowed_values": { + "type": ["array", "null"], + "items": { "type": "string", "maxLength": 75 }, + "maxItems": 200, + "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": ["string", "null"], + "enum": ["org_actors", "org_and_repo_actors", null], + "description": "Who can edit the values of the property", + "examples": ["org_actors"] + } + }, + "required": ["property_name", "value_type"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/custom_property/created.schema.json b/payload-schemas/api.github.com/custom_property/created.schema.json new file mode 100644 index 000000000..6d1262007 --- /dev/null +++ b/payload-schemas/api.github.com/custom_property/created.schema.json @@ -0,0 +1,15 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "custom_property$created", + "title": "custom property created event", + "type": "object", + "properties": { + "action": { "type": "string", "enum": ["created"] }, + "definition": { "$ref": "common/org-custom-property.schema.json" }, + "installation": { "$ref": "common/installation-lite.schema.json" }, + "organization": { "$ref": "common/organization.schema.json" }, + "sender": { "$ref": "common/user.schema.json" } + }, + "required": ["action", "definition", "organization"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/custom_property/deleted.schema.json b/payload-schemas/api.github.com/custom_property/deleted.schema.json new file mode 100644 index 000000000..96776cff7 --- /dev/null +++ b/payload-schemas/api.github.com/custom_property/deleted.schema.json @@ -0,0 +1,25 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "title": "custom property deleted event", + "$id": "custom_property$deleted", + "type": "object", + "properties": { + "action": { "type": "string", "enum": ["deleted"] }, + "definition": { + "type": "object", + "properties": { + "property_name": { + "type": "string", + "description": "The name of the property that was deleted." + } + }, + "required": ["property_name"], + "additionalProperties": false + }, + "installation": { "$ref": "common/installation-lite.schema.json" }, + "organization": { "$ref": "common/organization.schema.json" }, + "sender": { "$ref": "common/user.schema.json" } + }, + "required": ["action", "definition", "organization"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/custom_property_values/updated.schema.json b/payload-schemas/api.github.com/custom_property_values/updated.schema.json new file mode 100644 index 000000000..a84ac5cc2 --- /dev/null +++ b/payload-schemas/api.github.com/custom_property_values/updated.schema.json @@ -0,0 +1,31 @@ +{ + "title": "Custom property values updated event", + "$id": "custom_property_values$updated", + "type": "object", + "properties": { + "action": { "type": "string", "enum": ["updated"] }, + "installation": { "$ref": "common/installation-lite.schema.json" }, + "repository": { "$ref": "common/repository.schema.json" }, + "organization": { "$ref": "common/organization.schema.json" }, + "sender": { "$ref": "common/user.schema.json" }, + "new_property_values": { + "type": "array", + "description": "The new custom property values for the repository.", + "items": { "$ref": "common/custom-property-value.schema.json" } + }, + "old_property_values": { + "type": "array", + "description": "The old custom property values for the repository.", + "items": { "$ref": "common/custom-property-value.schema.json" } + } + }, + "required": [ + "action", + "repository", + "organization", + "sender", + "new_property_values", + "old_property_values" + ], + "additionalProperties": false +} From 371273b0db402a1a5615f359b2d11dbe74e473b6 Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Sun, 3 Mar 2024 20:18:00 -0500 Subject: [PATCH 3/8] feat: new `custom_property` on `repository` --- .../api.github.com/common/repository.schema.json | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/payload-schemas/api.github.com/common/repository.schema.json b/payload-schemas/api.github.com/common/repository.schema.json index 0ee8a8d07..67d48bcf4 100644 --- a/payload-schemas/api.github.com/common/repository.schema.json +++ b/payload-schemas/api.github.com/common/repository.schema.json @@ -79,7 +79,8 @@ "is_template", "web_commit_signoff_required", "topics", - "visibility" + "visibility", + "custom_properties" ], "properties": { "id": { @@ -426,7 +427,17 @@ "additionalProperties": false }, "public": { "type": "boolean" }, - "organization": { "type": "string" } + "organization": { "type": "string" }, + "custom_properties": { + "type": "object", + "additionalProperties": { + "oneOf": [ + { "type": "null" }, + { "type": "string" }, + { "type": "array", "items": { "type": "string" } } + ] + } + } }, "additionalProperties": false, "title": "Repository" From 417035e183b27429e007e246b455c1ae29b75f24 Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Sun, 3 Mar 2024 20:22:20 -0500 Subject: [PATCH 4/8] fix: update examples --- .../created.1.payload.json | 3 +- .../created.payload.json | 3 +- .../deleted.payload.json | 3 +- .../edited.payload.json | 3 +- .../check_run/completed.1.payload.json | 3 +- .../check_run/completed.payload.json | 3 +- .../completed.with-organization.payload.json | 3 +- .../check_run/created.payload.json | 3 +- .../created.with-organization.payload.json | 3 +- .../check_run/requested_action.payload.json | 3 +- .../check_run/rerequested.payload.json | 3 +- ...rerequested.with-organization.payload.json | 3 +- .../check_suite/completed.1.payload.json | 3 +- .../check_suite/completed.payload.json | 3 +- .../completed.with-organization.payload.json | 3 +- .../check_suite/requested.payload.json | 3 +- ...ad.with-email-with-special-characters.json | 3 +- .../requested.with-organization.payload.json | 3 +- .../check_suite/rerequested.payload.json | 3 +- ...rerequested.with-organization.payload.json | 3 +- .../closed-by-user.payload.json | 3 +- .../code_scanning_alert/created.payload.json | 3 +- .../code_scanning_alert/fixed.payload.json | 3 +- .../code_scanning_alert/reopened.payload.json | 3 +- .../reopened.with-organization.payload.json | 3 +- .../created.on-file.payload.json | 3 +- .../commit_comment/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../created.with-organization.payload.json | 3 +- .../api.github.com/create/payload.json | 3 +- .../create/with-description.payload.json | 3 +- .../create/with-installation.payload.json | 3 +- .../create/with-organization.payload.json | 3 +- .../api.github.com/delete/payload.json | 3 +- .../delete/with-installation.payload.json | 3 +- .../delete/with-organization.payload.json | 3 +- .../dependabot_alert/created.payload.json | 3 +- .../dependabot_alert/fixed.payload.json | 3 +- .../deploy_key/created.payload.json | 3 +- .../deployment/gh-pages.payload.json | 3 +- .../api.github.com/deployment/payload.json | 3 +- .../deployment/with-installation.payload.json | 3 +- .../deployment_review/requested.payload.json | 3 +- .../deployment_status/gh-pages.payload.json | 3 +- .../deployment_status/payload.json | 3 +- .../with-installation.payload.json | 3 +- .../discussion/answered.payload.json | 3 +- .../discussion/category_changed.payload.json | 3 +- .../discussion/created.payload.json | 3 +- .../discussion/edited.payload.json | 3 +- .../edited.with-rections.payload.json | 3 +- .../discussion/labeled.payload.json | 3 +- .../labeled.with-rections.payload.json | 3 +- .../discussion/locked.payload.json | 3 +- .../locked.with-rections.payload.json | 3 +- .../discussion/pinned.payload.json | 3 +- .../discussion/transferred.payload.json | 3 +- .../discussion/unanswered.payload.json | 3 +- .../discussion/unlabeled.payload.json | 3 +- .../discussion/unlocked.payload.json | 3 +- .../discussion_comment/created.payload.json | 3 +- .../discussion_comment/deleted.payload.json | 3 +- .../discussion_comment/edited.payload.json | 3 +- .../api.github.com/fork/payload.json | 3 +- .../fork/with-installation.payload.json | 3 +- .../api.github.com/gollum/payload.json | 3 +- .../gollum/with-installation.payload.json | 3 +- payload-examples/api.github.com/index.json | 1412 ++++++++++++++--- .../issue_comment/created.1.payload.json | 3 +- .../issue_comment/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../created.with-organization.payload.json | 3 +- .../issue_comment/deleted.payload.json | 3 +- .../deleted.with-organization.payload.json | 3 +- .../issue_comment/edited.payload.json | 3 +- .../edited.with-organization.payload.json | 3 +- .../issues/assigned.payload.json | 3 +- .../assigned.with-installation.payload.json | 3 +- .../assigned.with-organization.payload.json | 3 +- .../issues/deleted.payload.json | 3 +- .../issues/demilestoned.payload.json | 3 +- ...emilestoned.with-organization.payload.json | 3 +- .../api.github.com/issues/edited.payload.json | 3 +- .../edited.with-organization.payload.json | 3 +- .../issues/labeled.payload.json | 3 +- .../labeled.with-organization.payload.json | 3 +- .../api.github.com/issues/locked.payload.json | 3 +- .../locked.with-organization.payload.json | 3 +- .../issues/milestoned.payload.json | 3 +- .../milestoned.with-organization.payload.json | 3 +- .../api.github.com/issues/opened.payload.json | 3 +- .../opened.with-empty-body.payload.json | 3 +- .../opened.with-organization.payload.json | 3 +- .../issues/opened.with-transfer.payload.json | 3 +- .../api.github.com/issues/pinned.payload.json | 3 +- .../issues/reopened.payload.json | 3 +- .../issues/transferred.payload.json | 3 +- .../issues/unassigned.payload.json | 3 +- .../unassigned.with-organization.payload.json | 3 +- .../issues/unlabeled.payload.json | 3 +- .../unlabeled.with-organization.payload.json | 3 +- .../issues/unlocked.payload.json | 3 +- .../unlocked.with-organization.payload.json | 3 +- .../issues/unpinned.payload.json | 3 +- .../label/created.1.payload.json | 3 +- .../api.github.com/label/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../api.github.com/label/deleted.payload.json | 3 +- .../api.github.com/label/edited.payload.json | 3 +- .../api.github.com/member/added.payload.json | 3 +- .../added.with-installation.payload.json | 3 +- .../api.github.com/member/edited.payload.json | 3 +- .../merge_group/checks_requested.payload.json | 3 +- .../api.github.com/meta/deleted.payload.json | 3 +- .../milestone/closed.payload.json | 3 +- .../closed.with-installation.payload.json | 3 +- .../milestone/created.payload.json | 3 +- .../milestone/deleted.payload.json | 3 +- .../package/published.docker.payload.json | 3 +- .../package/published.npm.payload.json | 3 +- .../api.github.com/page_build/payload.json | 3 +- .../page_build/with-installation.payload.json | 3 +- .../api.github.com/ping/payload.json | 3 +- .../ping/with-app_id.payload.json | 3 +- .../project/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../project_card/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../created.with-no-note.payload.json | 3 +- .../created.with-organization.payload.json | 3 +- .../project_card/deleted.payload.json | 3 +- .../deleted.with-installation.payload.json | 3 +- .../deleted.with-organization.payload.json | 3 +- .../project_card/moved.payload.json | 3 +- .../project_column/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../project_column/edited.payload.json | 3 +- .../api.github.com/public/payload.json | 3 +- .../public/with-installation.payload.json | 3 +- .../pull_request/assigned.payload.json | 3 +- .../assigned.with-organization.payload.json | 3 +- .../pull_request/closed.payload.json | 3 +- .../closed.with-organization.payload.json | 3 +- .../converted_to_draft.payload.json | 3 +- ...ed_to_draft.with-installation.payload.json | 3 +- ...ed_to_draft.with-organization.payload.json | 3 +- .../pull_request/labeled.payload.json | 3 +- .../labeled.with-organization.payload.json | 3 +- .../pull_request/locked.payload.json | 3 +- .../locked.with-organization.payload.json | 3 +- .../pull_request/opened.payload.json | 3 +- .../pull_request/opened.with-null-body.json | 3 +- .../opened.with-organization.payload.json | 3 +- .../ready_for_review.payload.json | 3 +- ..._for_review.with-installation.payload.json | 3 +- ..._for_review.with-organization.payload.json | 3 +- .../pull_request/reopened.payload.json | 3 +- .../reopened.with-organization.payload.json | 3 +- .../review_request_removed.payload.json | 3 +- .../review_requested.payload.json | 3 +- .../pull_request/synchronize.payload.json | 3 +- .../pull_request/unassigned.payload.json | 3 +- .../unassigned.with-organization.payload.json | 3 +- .../pull_request/unlabeled.payload.json | 3 +- .../unlabeled.with-organization.payload.json | 3 +- .../pull_request/unlocked.payload.json | 3 +- .../unlocked.with-organization.payload.json | 3 +- .../dismissed.payload.json | 3 +- .../submitted.payload.json | 3 +- .../submitted.with-organization.payload.json | 3 +- .../created.payload.json | 3 +- .../created.with-organization.payload.json | 3 +- .../deleted.payload.json | 3 +- .../edited.payload.json | 3 +- .../resolved.payload.json | 3 +- .../unresolved.payload.json | 3 +- .../api.github.com/push/1.payload.json | 3 +- .../api.github.com/push/payload.json | 3 +- .../push/with-installation.payload.json | 3 +- .../push/with-new-branch.payload.json | 3 +- .../with-no-username-committer.payload.json | 3 +- .../push/with-organization.payload.json | 3 +- .../published.docker.payload.json | 3 +- .../release/created.payload.json | 3 +- .../created.with-discussion-url.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../release/deleted.payload.json | 3 +- .../deleted.with-reactions.payload.json | 3 +- .../release/edited.payload.json | 3 +- .../edited.with-reactions.payload.json | 3 +- .../release/prereleased.payload.json | 3 +- ...rereleased.with-disussion-url.payload.json | 3 +- .../release/published.payload.json | 3 +- ...published.with-discussion-url.payload.json | 3 +- .../api.github.com/release/released.json | 3 +- .../repository/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../repository/edited.payload.json | 3 +- ...ited.with-default_branch-edit.payload.json | 3 +- .../repository/privatized.payload.json | 3 +- .../privatized.with-organization.payload.json | 3 +- .../repository/publicized.payload.json | 3 +- .../publicized.with-organization.payload.json | 3 +- .../repository/renamed.payload.json | 3 +- .../repository/transferred.payload.json | 3 +- ...transferred.with-installation.payload.json | 3 +- ...transferred.with-organization.payload.json | 3 +- .../repository_dispatch/payload.json | 3 +- .../repository_import/payload.json | 3 +- .../create.payload.json | 3 +- .../create.with-organization.payload.json | 3 +- .../dismiss.payload.json | 3 +- .../reopened.payload.json | 3 +- .../api.github.com/star/created.payload.json | 3 +- .../api.github.com/star/deleted.payload.json | 3 +- .../api.github.com/status/payload.json | 3 +- .../with-author-committer-null.payload.json | 3 +- .../status/with-installation.payload.json | 3 +- .../team/added_to_repository.payload.json | 3 +- .../team/removed_from_repository.payload.json | 3 +- .../api.github.com/team_add/payload.json | 3 +- .../team_add/with-installation.payload.json | 3 +- .../api.github.com/watch/started.payload.json | 3 +- .../started.with-installation.payload.json | 3 +- .../workflow_dispatch/payload.json | 3 +- ...ted.failure.with-organization.payload.json | 3 +- ...ted.success.with-organization.payload.json | 3 +- .../workflow_job/in_progress.payload.json | 3 +- ...in_progress.with-queued-steps.payload.json | 3 +- .../workflow_job/queued.payload.json | 3 +- .../queued.with-deployment.payload.json | 3 +- .../workflow_job/waiting.payload.json | 3 +- .../workflow_run/completed.payload.json | 3 +- .../completed.with-pull-requests.payload.json | 3 +- .../workflow_run/requested.payload.json | 3 +- .../requested.with-conclusion.payload.json | 3 +- 236 files changed, 1649 insertions(+), 468 deletions(-) diff --git a/payload-examples/api.github.com/branch_protection_rule/created.1.payload.json b/payload-examples/api.github.com/branch_protection_rule/created.1.payload.json index 71a92c189..a7806438d 100644 --- a/payload-examples/api.github.com/branch_protection_rule/created.1.payload.json +++ b/payload-examples/api.github.com/branch_protection_rule/created.1.payload.json @@ -132,7 +132,8 @@ "forks": 0, "open_issues": 1, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "wolfy1339", diff --git a/payload-examples/api.github.com/branch_protection_rule/created.payload.json b/payload-examples/api.github.com/branch_protection_rule/created.payload.json index eefacf6bb..19a22a529 100644 --- a/payload-examples/api.github.com/branch_protection_rule/created.payload.json +++ b/payload-examples/api.github.com/branch_protection_rule/created.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/branch_protection_rule/deleted.payload.json b/payload-examples/api.github.com/branch_protection_rule/deleted.payload.json index c2aa90f9d..9f0b59eb4 100644 --- a/payload-examples/api.github.com/branch_protection_rule/deleted.payload.json +++ b/payload-examples/api.github.com/branch_protection_rule/deleted.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/branch_protection_rule/edited.payload.json b/payload-examples/api.github.com/branch_protection_rule/edited.payload.json index d72e3f22a..41aedbfe9 100644 --- a/payload-examples/api.github.com/branch_protection_rule/edited.payload.json +++ b/payload-examples/api.github.com/branch_protection_rule/edited.payload.json @@ -139,7 +139,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/check_run/completed.1.payload.json b/payload-examples/api.github.com/check_run/completed.1.payload.json index ac47a6bdf..839948ff5 100644 --- a/payload-examples/api.github.com/check_run/completed.1.payload.json +++ b/payload-examples/api.github.com/check_run/completed.1.payload.json @@ -279,7 +279,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_run/completed.payload.json b/payload-examples/api.github.com/check_run/completed.payload.json index df8d88dca..b180cc8f3 100644 --- a/payload-examples/api.github.com/check_run/completed.payload.json +++ b/payload-examples/api.github.com/check_run/completed.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_run/completed.with-organization.payload.json b/payload-examples/api.github.com/check_run/completed.with-organization.payload.json index 19ea02a95..0bf67ca39 100644 --- a/payload-examples/api.github.com/check_run/completed.with-organization.payload.json +++ b/payload-examples/api.github.com/check_run/completed.with-organization.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/check_run/created.payload.json b/payload-examples/api.github.com/check_run/created.payload.json index ae09a8aa7..c4fbc4ff9 100644 --- a/payload-examples/api.github.com/check_run/created.payload.json +++ b/payload-examples/api.github.com/check_run/created.payload.json @@ -297,7 +297,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_run/created.with-organization.payload.json b/payload-examples/api.github.com/check_run/created.with-organization.payload.json index cebe6514e..909092d3b 100644 --- a/payload-examples/api.github.com/check_run/created.with-organization.payload.json +++ b/payload-examples/api.github.com/check_run/created.with-organization.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/check_run/requested_action.payload.json b/payload-examples/api.github.com/check_run/requested_action.payload.json index f3a56a10a..f6c9d9b1f 100644 --- a/payload-examples/api.github.com/check_run/requested_action.payload.json +++ b/payload-examples/api.github.com/check_run/requested_action.payload.json @@ -271,7 +271,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "electron", diff --git a/payload-examples/api.github.com/check_run/rerequested.payload.json b/payload-examples/api.github.com/check_run/rerequested.payload.json index 85baf386c..0fe4f69b4 100644 --- a/payload-examples/api.github.com/check_run/rerequested.payload.json +++ b/payload-examples/api.github.com/check_run/rerequested.payload.json @@ -188,7 +188,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "github", diff --git a/payload-examples/api.github.com/check_run/rerequested.with-organization.payload.json b/payload-examples/api.github.com/check_run/rerequested.with-organization.payload.json index 814a283d2..e63c26aa4 100644 --- a/payload-examples/api.github.com/check_run/rerequested.with-organization.payload.json +++ b/payload-examples/api.github.com/check_run/rerequested.with-organization.payload.json @@ -188,7 +188,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/check_suite/completed.1.payload.json b/payload-examples/api.github.com/check_suite/completed.1.payload.json index 5238b24de..da8777de5 100644 --- a/payload-examples/api.github.com/check_suite/completed.1.payload.json +++ b/payload-examples/api.github.com/check_suite/completed.1.payload.json @@ -176,7 +176,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_suite/completed.payload.json b/payload-examples/api.github.com/check_suite/completed.payload.json index 7ab752820..bb3de3c12 100644 --- a/payload-examples/api.github.com/check_suite/completed.payload.json +++ b/payload-examples/api.github.com/check_suite/completed.payload.json @@ -202,7 +202,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_suite/completed.with-organization.payload.json b/payload-examples/api.github.com/check_suite/completed.with-organization.payload.json index 8f25337fb..3f0c32e27 100644 --- a/payload-examples/api.github.com/check_suite/completed.with-organization.payload.json +++ b/payload-examples/api.github.com/check_suite/completed.with-organization.payload.json @@ -202,7 +202,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/check_suite/requested.payload.json b/payload-examples/api.github.com/check_suite/requested.payload.json index 312932477..295845856 100644 --- a/payload-examples/api.github.com/check_suite/requested.payload.json +++ b/payload-examples/api.github.com/check_suite/requested.payload.json @@ -178,7 +178,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_suite/requested.payload.with-email-with-special-characters.json b/payload-examples/api.github.com/check_suite/requested.payload.with-email-with-special-characters.json index c90e98b83..0c3d9ab24 100644 --- a/payload-examples/api.github.com/check_suite/requested.payload.with-email-with-special-characters.json +++ b/payload-examples/api.github.com/check_suite/requested.payload.with-email-with-special-characters.json @@ -180,7 +180,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_suite/requested.with-organization.payload.json b/payload-examples/api.github.com/check_suite/requested.with-organization.payload.json index 483a6f92b..99ecd9ddf 100644 --- a/payload-examples/api.github.com/check_suite/requested.with-organization.payload.json +++ b/payload-examples/api.github.com/check_suite/requested.with-organization.payload.json @@ -178,7 +178,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/check_suite/rerequested.payload.json b/payload-examples/api.github.com/check_suite/rerequested.payload.json index edb6f1348..692545755 100644 --- a/payload-examples/api.github.com/check_suite/rerequested.payload.json +++ b/payload-examples/api.github.com/check_suite/rerequested.payload.json @@ -202,7 +202,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "octocoders-linter[bot]", diff --git a/payload-examples/api.github.com/check_suite/rerequested.with-organization.payload.json b/payload-examples/api.github.com/check_suite/rerequested.with-organization.payload.json index 54d9b6eca..4d38adb09 100644 --- a/payload-examples/api.github.com/check_suite/rerequested.with-organization.payload.json +++ b/payload-examples/api.github.com/check_suite/rerequested.with-organization.payload.json @@ -202,7 +202,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/code_scanning_alert/closed-by-user.payload.json b/payload-examples/api.github.com/code_scanning_alert/closed-by-user.payload.json index bd9c2ff3c..71e47da68 100644 --- a/payload-examples/api.github.com/code_scanning_alert/closed-by-user.payload.json +++ b/payload-examples/api.github.com/code_scanning_alert/closed-by-user.payload.json @@ -165,7 +165,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/code_scanning_alert/created.payload.json b/payload-examples/api.github.com/code_scanning_alert/created.payload.json index fa81dbd81..4bc3b8ecc 100644 --- a/payload-examples/api.github.com/code_scanning_alert/created.payload.json +++ b/payload-examples/api.github.com/code_scanning_alert/created.payload.json @@ -142,7 +142,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/code_scanning_alert/fixed.payload.json b/payload-examples/api.github.com/code_scanning_alert/fixed.payload.json index 4ba69b05c..2442a5477 100644 --- a/payload-examples/api.github.com/code_scanning_alert/fixed.payload.json +++ b/payload-examples/api.github.com/code_scanning_alert/fixed.payload.json @@ -159,7 +159,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/code_scanning_alert/reopened.payload.json b/payload-examples/api.github.com/code_scanning_alert/reopened.payload.json index d5ff52eaf..9c8043ed8 100644 --- a/payload-examples/api.github.com/code_scanning_alert/reopened.payload.json +++ b/payload-examples/api.github.com/code_scanning_alert/reopened.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/code_scanning_alert/reopened.with-organization.payload.json b/payload-examples/api.github.com/code_scanning_alert/reopened.with-organization.payload.json index 58b5bf39b..aa604f844 100644 --- a/payload-examples/api.github.com/code_scanning_alert/reopened.with-organization.payload.json +++ b/payload-examples/api.github.com/code_scanning_alert/reopened.with-organization.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/commit_comment/created.on-file.payload.json b/payload-examples/api.github.com/commit_comment/created.on-file.payload.json index a4f48d512..7d3f553d3 100644 --- a/payload-examples/api.github.com/commit_comment/created.on-file.payload.json +++ b/payload-examples/api.github.com/commit_comment/created.on-file.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/commit_comment/created.payload.json b/payload-examples/api.github.com/commit_comment/created.payload.json index acca230b7..4c75c8c31 100644 --- a/payload-examples/api.github.com/commit_comment/created.payload.json +++ b/payload-examples/api.github.com/commit_comment/created.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/commit_comment/created.with-installation.payload.json b/payload-examples/api.github.com/commit_comment/created.with-installation.payload.json index 7cf4b67ee..b511e5ea9 100644 --- a/payload-examples/api.github.com/commit_comment/created.with-installation.payload.json +++ b/payload-examples/api.github.com/commit_comment/created.with-installation.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/commit_comment/created.with-organization.payload.json b/payload-examples/api.github.com/commit_comment/created.with-organization.payload.json index a6a27f940..efa8f9dbb 100644 --- a/payload-examples/api.github.com/commit_comment/created.with-organization.payload.json +++ b/payload-examples/api.github.com/commit_comment/created.with-organization.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/create/payload.json b/payload-examples/api.github.com/create/payload.json index 9164ea910..cecdb053c 100644 --- a/payload-examples/api.github.com/create/payload.json +++ b/payload-examples/api.github.com/create/payload.json @@ -100,7 +100,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/create/with-description.payload.json b/payload-examples/api.github.com/create/with-description.payload.json index 6006fc338..e81bb7233 100644 --- a/payload-examples/api.github.com/create/with-description.payload.json +++ b/payload-examples/api.github.com/create/with-description.payload.json @@ -100,7 +100,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/create/with-installation.payload.json b/payload-examples/api.github.com/create/with-installation.payload.json index 768a3cb12..c347bdd90 100644 --- a/payload-examples/api.github.com/create/with-installation.payload.json +++ b/payload-examples/api.github.com/create/with-installation.payload.json @@ -100,7 +100,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/create/with-organization.payload.json b/payload-examples/api.github.com/create/with-organization.payload.json index 38c72e1c9..d41b183a1 100644 --- a/payload-examples/api.github.com/create/with-organization.payload.json +++ b/payload-examples/api.github.com/create/with-organization.payload.json @@ -100,7 +100,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/delete/payload.json b/payload-examples/api.github.com/delete/payload.json index 98fa9128e..874dc5f65 100644 --- a/payload-examples/api.github.com/delete/payload.json +++ b/payload-examples/api.github.com/delete/payload.json @@ -98,7 +98,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/delete/with-installation.payload.json b/payload-examples/api.github.com/delete/with-installation.payload.json index e2e70f78a..c02b59a0f 100644 --- a/payload-examples/api.github.com/delete/with-installation.payload.json +++ b/payload-examples/api.github.com/delete/with-installation.payload.json @@ -98,7 +98,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/delete/with-organization.payload.json b/payload-examples/api.github.com/delete/with-organization.payload.json index a5b56815b..0d0766d0d 100644 --- a/payload-examples/api.github.com/delete/with-organization.payload.json +++ b/payload-examples/api.github.com/delete/with-organization.payload.json @@ -98,7 +98,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/dependabot_alert/created.payload.json b/payload-examples/api.github.com/dependabot_alert/created.payload.json index 719c712a1..244f71fb5 100644 --- a/payload-examples/api.github.com/dependabot_alert/created.payload.json +++ b/payload-examples/api.github.com/dependabot_alert/created.payload.json @@ -179,7 +179,8 @@ "forks": 0, "open_issues": 13, "watchers": 0, - "default_branch": "master" + "default_branch": "master", + "custom_properties": {} }, "sender": { "login": "github", diff --git a/payload-examples/api.github.com/dependabot_alert/fixed.payload.json b/payload-examples/api.github.com/dependabot_alert/fixed.payload.json index d0ebf1577..b9f4d521c 100644 --- a/payload-examples/api.github.com/dependabot_alert/fixed.payload.json +++ b/payload-examples/api.github.com/dependabot_alert/fixed.payload.json @@ -170,7 +170,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "github", diff --git a/payload-examples/api.github.com/deploy_key/created.payload.json b/payload-examples/api.github.com/deploy_key/created.payload.json index 1777074c9..6e304e46a 100644 --- a/payload-examples/api.github.com/deploy_key/created.payload.json +++ b/payload-examples/api.github.com/deploy_key/created.payload.json @@ -104,7 +104,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/deployment/gh-pages.payload.json b/payload-examples/api.github.com/deployment/gh-pages.payload.json index 771bf5d20..ad61fb754 100644 --- a/payload-examples/api.github.com/deployment/gh-pages.payload.json +++ b/payload-examples/api.github.com/deployment/gh-pages.payload.json @@ -208,7 +208,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/deployment/payload.json b/payload-examples/api.github.com/deployment/payload.json index 99ba450cd..f307952ae 100644 --- a/payload-examples/api.github.com/deployment/payload.json +++ b/payload-examples/api.github.com/deployment/payload.json @@ -134,7 +134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/deployment/with-installation.payload.json b/payload-examples/api.github.com/deployment/with-installation.payload.json index f19a11a3e..87f00313e 100644 --- a/payload-examples/api.github.com/deployment/with-installation.payload.json +++ b/payload-examples/api.github.com/deployment/with-installation.payload.json @@ -134,7 +134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/deployment_review/requested.payload.json b/payload-examples/api.github.com/deployment_review/requested.payload.json index e90091d48..abed18fe1 100644 --- a/payload-examples/api.github.com/deployment_review/requested.payload.json +++ b/payload-examples/api.github.com/deployment_review/requested.payload.json @@ -391,7 +391,8 @@ "forks": 0, "open_issues": 1, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "organization": { "login": "terraform-test-github", diff --git a/payload-examples/api.github.com/deployment_status/gh-pages.payload.json b/payload-examples/api.github.com/deployment_status/gh-pages.payload.json index a62eeeb22..b05deb5a5 100644 --- a/payload-examples/api.github.com/deployment_status/gh-pages.payload.json +++ b/payload-examples/api.github.com/deployment_status/gh-pages.payload.json @@ -246,7 +246,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/deployment_status/payload.json b/payload-examples/api.github.com/deployment_status/payload.json index 09f434a9f..34eb9683e 100644 --- a/payload-examples/api.github.com/deployment_status/payload.json +++ b/payload-examples/api.github.com/deployment_status/payload.json @@ -166,7 +166,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/deployment_status/with-installation.payload.json b/payload-examples/api.github.com/deployment_status/with-installation.payload.json index 6062a20c6..64c9a2c60 100644 --- a/payload-examples/api.github.com/deployment_status/with-installation.payload.json +++ b/payload-examples/api.github.com/deployment_status/with-installation.payload.json @@ -166,7 +166,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/answered.payload.json b/payload-examples/api.github.com/discussion/answered.payload.json index a70ab0458..e55cdcc1c 100644 --- a/payload-examples/api.github.com/discussion/answered.payload.json +++ b/payload-examples/api.github.com/discussion/answered.payload.json @@ -198,7 +198,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/category_changed.payload.json b/payload-examples/api.github.com/discussion/category_changed.payload.json index 81fe94a6d..85cd89f11 100644 --- a/payload-examples/api.github.com/discussion/category_changed.payload.json +++ b/payload-examples/api.github.com/discussion/category_changed.payload.json @@ -161,7 +161,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/created.payload.json b/payload-examples/api.github.com/discussion/created.payload.json index 5b237e308..7369f1a17 100644 --- a/payload-examples/api.github.com/discussion/created.payload.json +++ b/payload-examples/api.github.com/discussion/created.payload.json @@ -146,7 +146,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/edited.payload.json b/payload-examples/api.github.com/discussion/edited.payload.json index 86877cc82..1acfba414 100644 --- a/payload-examples/api.github.com/discussion/edited.payload.json +++ b/payload-examples/api.github.com/discussion/edited.payload.json @@ -147,7 +147,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/edited.with-rections.payload.json b/payload-examples/api.github.com/discussion/edited.with-rections.payload.json index 031600aa7..0184c61fa 100644 --- a/payload-examples/api.github.com/discussion/edited.with-rections.payload.json +++ b/payload-examples/api.github.com/discussion/edited.with-rections.payload.json @@ -159,7 +159,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/labeled.payload.json b/payload-examples/api.github.com/discussion/labeled.payload.json index 5713f44ae..bcc4e2def 100644 --- a/payload-examples/api.github.com/discussion/labeled.payload.json +++ b/payload-examples/api.github.com/discussion/labeled.payload.json @@ -155,7 +155,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/labeled.with-rections.payload.json b/payload-examples/api.github.com/discussion/labeled.with-rections.payload.json index feac553b3..08a8c4ded 100644 --- a/payload-examples/api.github.com/discussion/labeled.with-rections.payload.json +++ b/payload-examples/api.github.com/discussion/labeled.with-rections.payload.json @@ -167,7 +167,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/locked.payload.json b/payload-examples/api.github.com/discussion/locked.payload.json index 31edf36cf..f71ea8bde 100644 --- a/payload-examples/api.github.com/discussion/locked.payload.json +++ b/payload-examples/api.github.com/discussion/locked.payload.json @@ -146,7 +146,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/locked.with-rections.payload.json b/payload-examples/api.github.com/discussion/locked.with-rections.payload.json index ea8f72850..7f0544e1a 100644 --- a/payload-examples/api.github.com/discussion/locked.with-rections.payload.json +++ b/payload-examples/api.github.com/discussion/locked.with-rections.payload.json @@ -158,7 +158,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/pinned.payload.json b/payload-examples/api.github.com/discussion/pinned.payload.json index 0b2d04a1d..dab75f025 100644 --- a/payload-examples/api.github.com/discussion/pinned.payload.json +++ b/payload-examples/api.github.com/discussion/pinned.payload.json @@ -146,7 +146,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/transferred.payload.json b/payload-examples/api.github.com/discussion/transferred.payload.json index 517504eea..5da0acad7 100644 --- a/payload-examples/api.github.com/discussion/transferred.payload.json +++ b/payload-examples/api.github.com/discussion/transferred.payload.json @@ -296,7 +296,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/unanswered.payload.json b/payload-examples/api.github.com/discussion/unanswered.payload.json index 6f928aeec..208df2662 100644 --- a/payload-examples/api.github.com/discussion/unanswered.payload.json +++ b/payload-examples/api.github.com/discussion/unanswered.payload.json @@ -179,7 +179,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/unlabeled.payload.json b/payload-examples/api.github.com/discussion/unlabeled.payload.json index 3723e5ff4..af9cdd4f5 100644 --- a/payload-examples/api.github.com/discussion/unlabeled.payload.json +++ b/payload-examples/api.github.com/discussion/unlabeled.payload.json @@ -155,7 +155,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/unlocked.payload.json b/payload-examples/api.github.com/discussion/unlocked.payload.json index 5103830a3..2520d6b74 100644 --- a/payload-examples/api.github.com/discussion/unlocked.payload.json +++ b/payload-examples/api.github.com/discussion/unlocked.payload.json @@ -146,7 +146,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion_comment/created.payload.json b/payload-examples/api.github.com/discussion_comment/created.payload.json index d51e7675a..813279c74 100644 --- a/payload-examples/api.github.com/discussion_comment/created.payload.json +++ b/payload-examples/api.github.com/discussion_comment/created.payload.json @@ -191,7 +191,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion_comment/deleted.payload.json b/payload-examples/api.github.com/discussion_comment/deleted.payload.json index bf758fafe..597f828c8 100644 --- a/payload-examples/api.github.com/discussion_comment/deleted.payload.json +++ b/payload-examples/api.github.com/discussion_comment/deleted.payload.json @@ -191,7 +191,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion_comment/edited.payload.json b/payload-examples/api.github.com/discussion_comment/edited.payload.json index 9367cf180..2a88cbb56 100644 --- a/payload-examples/api.github.com/discussion_comment/edited.payload.json +++ b/payload-examples/api.github.com/discussion_comment/edited.payload.json @@ -192,7 +192,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/fork/payload.json b/payload-examples/api.github.com/fork/payload.json index 0c97833cd..0caec792a 100644 --- a/payload-examples/api.github.com/fork/payload.json +++ b/payload-examples/api.github.com/fork/payload.json @@ -194,7 +194,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/fork/with-installation.payload.json b/payload-examples/api.github.com/fork/with-installation.payload.json index 9deb2a41d..312f989e1 100644 --- a/payload-examples/api.github.com/fork/with-installation.payload.json +++ b/payload-examples/api.github.com/fork/with-installation.payload.json @@ -194,7 +194,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/gollum/payload.json b/payload-examples/api.github.com/gollum/payload.json index de5a5ff39..d4289666a 100644 --- a/payload-examples/api.github.com/gollum/payload.json +++ b/payload-examples/api.github.com/gollum/payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "rachmari", diff --git a/payload-examples/api.github.com/gollum/with-installation.payload.json b/payload-examples/api.github.com/gollum/with-installation.payload.json index 5152200d7..8f77f1b04 100644 --- a/payload-examples/api.github.com/gollum/with-installation.payload.json +++ b/payload-examples/api.github.com/gollum/with-installation.payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "rachmari", diff --git a/payload-examples/api.github.com/index.json b/payload-examples/api.github.com/index.json index dee8443d8..e53d5199f 100644 --- a/payload-examples/api.github.com/index.json +++ b/payload-examples/api.github.com/index.json @@ -321,7 +321,8 @@ "forks": 0, "open_issues": 1, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "wolfy1339", @@ -472,7 +473,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -633,7 +635,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -813,7 +816,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -1510,7 +1514,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -1819,7 +1824,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -2128,7 +2134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -2464,7 +2471,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -2773,7 +2781,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -3083,7 +3092,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "electron", @@ -3314,7 +3324,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "github", @@ -3545,7 +3556,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -4040,7 +4052,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -4267,7 +4280,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -4494,7 +4508,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -4711,7 +4726,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -4920,7 +4936,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -5127,7 +5144,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -5372,7 +5390,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "octocoders-linter[bot]", @@ -5603,7 +5622,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -6017,7 +6037,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Codertocat", @@ -6202,7 +6223,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Codertocat", @@ -6404,7 +6426,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -6569,7 +6592,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -6730,7 +6754,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -7083,7 +7108,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -7238,7 +7264,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -7393,7 +7420,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -7566,7 +7594,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -7871,7 +7900,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -7996,7 +8026,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -8121,7 +8152,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -8250,7 +8282,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -8543,7 +8576,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -8666,7 +8700,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -8793,7 +8828,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -9237,7 +9273,8 @@ "forks": 0, "open_issues": 13, "watchers": 0, - "default_branch": "master" + "default_branch": "master", + "custom_properties": {} }, "sender": { "login": "github", @@ -9438,7 +9475,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "github", @@ -9717,7 +9755,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -10132,7 +10171,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -10309,7 +10349,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -10468,7 +10509,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -10896,7 +10938,8 @@ "forks": 0, "open_issues": 1, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "organization": { "login": "terraform-test-github", @@ -11416,7 +11459,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -11625,7 +11669,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -11816,7 +11861,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -12264,7 +12310,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -12454,7 +12501,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -12629,7 +12677,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -12805,7 +12854,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -12993,7 +13043,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -13177,7 +13228,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -13373,7 +13425,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -13548,7 +13601,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -13735,7 +13789,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -13910,7 +13965,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -14235,7 +14291,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -14443,7 +14500,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -14627,7 +14685,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -14802,7 +14861,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -15266,7 +15326,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -15486,7 +15547,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -15707,7 +15769,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -16170,7 +16233,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Octocoders", @@ -16389,7 +16453,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Octocoders", @@ -16757,7 +16822,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "rachmari", @@ -16887,7 +16953,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "rachmari", @@ -18509,7 +18576,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -18832,7 +18900,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -19141,7 +19210,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -19468,7 +19538,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -19791,7 +19862,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -20100,7 +20172,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -20137,6 +20210,297 @@ "site_admin": false } }, + { + "action": "edited", + "changes": { + "body": { + "from": "Wonder if we could make a secondary rotation map to a keybind instead. Thus disabling right click rotation when it's used for panning.\r\n\r\nOr we swap right button with middle button in addition too to support users who have a middle button on the mouse." + } + }, + "issue": { + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469", + "repository_url": "https://api.github.com/repos/CorsixTH/CorsixTH", + "labels_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469/labels{/name}", + "comments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469/comments", + "events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469/events", + "html_url": "https://github.com/CorsixTH/CorsixTH/issues/2469", + "id": 2060772086, + "node_id": "I_kwDOALyme8561OL2", + "number": 2469, + "title": "[Bug] Right mouse panning can cause glitches with object placement", + "user": { + "login": "lewri", + "id": 20030128, + "node_id": "MDQ6VXNlcjIwMDMwMTI4", + "avatar_url": "https://avatars.githubusercontent.com/u/20030128?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lewri", + "html_url": "https://github.com/lewri", + "followers_url": "https://api.github.com/users/lewri/followers", + "following_url": "https://api.github.com/users/lewri/following{/other_user}", + "gists_url": "https://api.github.com/users/lewri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lewri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lewri/subscriptions", + "organizations_url": "https://api.github.com/users/lewri/orgs", + "repos_url": "https://api.github.com/users/lewri/repos", + "events_url": "https://api.github.com/users/lewri/events{/privacy}", + "received_events_url": "https://api.github.com/users/lewri/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 57863423, + "node_id": "MDU6TGFiZWw1Nzg2MzQyMw==", + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels/P4%20Low", + "name": "P4 Low", + "color": "DCB103", + "default": false, + "description": "Priority" + }, + { + "id": 137785782, + "node_id": "MDU6TGFiZWwxMzc3ODU3ODI=", + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels/T:Regression", + "name": "T:Regression", + "color": "bfd4f2", + "default": false, + "description": "Type" + }, + { + "id": 160013792, + "node_id": "MDU6TGFiZWwxNjAwMTM3OTI=", + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels/bug", + "name": "bug", + "color": "aa161d", + "default": true, + "description": "issue type" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2023-12-30T15:08:26Z", + "updated_at": "2024-02-03T09:22:47Z", + "closed_at": null, + "author_association": "MEMBER", + "active_lock_reason": null, + "body": "### Describe the issue\r\n\r\nFollowing on from #2375 -- we now need to address a small issue where enabling Right Mouse panning causes some little bugs on object placement:\r\n1. When panning, the object will jitter around a little.\r\n2. When you finish panning, the object will rotate 1 time onMouseUp.\r\n\r\nThe jitter I could live with for longer, the unintentional rotate is a little bit of a pain.\r\n\r\n### Steps to Reproduce\r\n\r\n1. Start a game on a CorsixTH build on or after #2375 \r\n2. Set mouse panning to right mouse\r\n3. Go into an object placement task and use panning to move around the view.\r\n\r\n\r\n### Expected Behaviour\r\n\r\nWe should avoid jittering of objects during a pan -- we also want to avoid unintentional rotation.\r\n\r\n### Save Game\r\n\r\nSave game attached to report: No\r\n\r\n### CorsixTH Version\r\n\r\nversion with 2375 implemented (based on 0.67/master)\r\n\r\n### Operating System\r\n\r\nWindows 10\r\n\r\n### Theme Hospital Version\r\n\r\nGOG.com\r\n\r\n### Gamelog.txt\r\n\r\n_No response_\r\n\r\n### Additional Information\r\n\r\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/comments/1925240135", + "html_url": "https://github.com/CorsixTH/CorsixTH/issues/2469#issuecomment-1925240135", + "issue_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469", + "id": 1925240135, + "node_id": "IC_kwDOALyme85ywNVH", + "user": { + "login": "lewri", + "id": 20030128, + "node_id": "MDQ6VXNlcjIwMDMwMTI4", + "avatar_url": "https://avatars.githubusercontent.com/u/20030128?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lewri", + "html_url": "https://github.com/lewri", + "followers_url": "https://api.github.com/users/lewri/followers", + "following_url": "https://api.github.com/users/lewri/following{/other_user}", + "gists_url": "https://api.github.com/users/lewri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lewri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lewri/subscriptions", + "organizations_url": "https://api.github.com/users/lewri/orgs", + "repos_url": "https://api.github.com/users/lewri/repos", + "events_url": "https://api.github.com/users/lewri/events{/privacy}", + "received_events_url": "https://api.github.com/users/lewri/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-02-03T09:22:29Z", + "updated_at": "2024-02-03T09:22:47Z", + "author_association": "MEMBER", + "body": "Wonder if we could make a secondary rotation to a keybind instead. Thus disabling right click rotation when it's used for panning.\r\n\r\nOr we swap right button with middle button in addition too to support users who have a middle button on the mouse.", + "reactions": { + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/comments/1925240135/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + }, + "repository": { + "id": 12363387, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM2MzM4Nw==", + "name": "CorsixTH", + "full_name": "CorsixTH/CorsixTH", + "private": false, + "owner": { + "login": "CorsixTH", + "id": 4948760, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", + "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/CorsixTH", + "html_url": "https://github.com/CorsixTH", + "followers_url": "https://api.github.com/users/CorsixTH/followers", + "following_url": "https://api.github.com/users/CorsixTH/following{/other_user}", + "gists_url": "https://api.github.com/users/CorsixTH/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CorsixTH/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CorsixTH/subscriptions", + "organizations_url": "https://api.github.com/users/CorsixTH/orgs", + "repos_url": "https://api.github.com/users/CorsixTH/repos", + "events_url": "https://api.github.com/users/CorsixTH/events{/privacy}", + "received_events_url": "https://api.github.com/users/CorsixTH/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/CorsixTH/CorsixTH", + "description": "Open source clone of Theme Hospital", + "fork": false, + "url": "https://api.github.com/repos/CorsixTH/CorsixTH", + "forks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/forks", + "keys_url": "https://api.github.com/repos/CorsixTH/CorsixTH/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CorsixTH/CorsixTH/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CorsixTH/CorsixTH/teams", + "hooks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/hooks", + "issue_events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/events{/number}", + "events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/events", + "assignees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/assignees{/user}", + "branches_url": "https://api.github.com/repos/CorsixTH/CorsixTH/branches{/branch}", + "tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/tags", + "blobs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CorsixTH/CorsixTH/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CorsixTH/CorsixTH/languages", + "stargazers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/stargazers", + "contributors_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contributors", + "subscribers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscribers", + "subscription_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscription", + "commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contents/{+path}", + "compare_url": "https://api.github.com/repos/CorsixTH/CorsixTH/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CorsixTH/CorsixTH/merges", + "archive_url": "https://api.github.com/repos/CorsixTH/CorsixTH/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CorsixTH/CorsixTH/downloads", + "issues_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues{/number}", + "pulls_url": "https://api.github.com/repos/CorsixTH/CorsixTH/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CorsixTH/CorsixTH/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CorsixTH/CorsixTH/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels{/name}", + "releases_url": "https://api.github.com/repos/CorsixTH/CorsixTH/releases{/id}", + "deployments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/deployments", + "created_at": "2013-08-25T18:16:56Z", + "updated_at": "2024-01-30T06:47:16Z", + "pushed_at": "2024-02-02T18:19:55Z", + "git_url": "git://github.com/CorsixTH/CorsixTH.git", + "ssh_url": "git@github.com:CorsixTH/CorsixTH.git", + "clone_url": "https://github.com/CorsixTH/CorsixTH.git", + "svn_url": "https://github.com/CorsixTH/CorsixTH", + "homepage": null, + "size": 31482, + "stargazers_count": 2869, + "watchers_count": 2869, + "language": "Lua", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": true, + "forks_count": 300, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 256, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "game", + "opensource", + "remake", + "strategy-game", + "theme-hospital" + ], + "visibility": "public", + "forks": 300, + "open_issues": 256, + "watchers": 2869, + "default_branch": "master", + "custom_properties": {} + }, + "organization": { + "login": "CorsixTH", + "id": 4948760, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", + "url": "https://api.github.com/orgs/CorsixTH", + "repos_url": "https://api.github.com/orgs/CorsixTH/repos", + "events_url": "https://api.github.com/orgs/CorsixTH/events", + "hooks_url": "https://api.github.com/orgs/CorsixTH/hooks", + "issues_url": "https://api.github.com/orgs/CorsixTH/issues", + "members_url": "https://api.github.com/orgs/CorsixTH/members{/member}", + "public_members_url": "https://api.github.com/orgs/CorsixTH/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", + "description": "" + }, + "sender": { + "login": "lewri", + "id": 20030128, + "node_id": "MDQ6VXNlcjIwMDMwMTI4", + "avatar_url": "https://avatars.githubusercontent.com/u/20030128?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lewri", + "html_url": "https://github.com/lewri", + "followers_url": "https://api.github.com/users/lewri/followers", + "following_url": "https://api.github.com/users/lewri/following{/other_user}", + "gists_url": "https://api.github.com/users/lewri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lewri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lewri/subscriptions", + "organizations_url": "https://api.github.com/users/lewri/orgs", + "repos_url": "https://api.github.com/users/lewri/repos", + "events_url": "https://api.github.com/users/lewri/events{/privacy}", + "received_events_url": "https://api.github.com/users/lewri/received_events", + "type": "User", + "site_admin": false + }, + "installation": { + "id": 325639, + "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMzI1NjM5" + } + }, { "action": "edited", "changes": { @@ -20428,7 +20792,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -20742,7 +21107,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -21354,7 +21720,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -21639,7 +22006,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -21928,7 +22296,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -21965,6 +22334,239 @@ "site_admin": false } }, + { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915", + "repository_url": "https://api.github.com/repos/CorsixTH/CorsixTH", + "labels_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915/labels{/name}", + "comments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915/comments", + "events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915/events", + "html_url": "https://github.com/CorsixTH/CorsixTH/issues/1915", + "id": 907454938, + "node_id": "MDU6SXNzdWU5MDc0NTQ5Mzg=", + "number": 1915, + "title": "Hint to people that there are other languages available, after a font selection", + "user": { + "login": "kparal", + "id": 755451, + "node_id": "MDQ6VXNlcjc1NTQ1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/755451?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kparal", + "html_url": "https://github.com/kparal", + "followers_url": "https://api.github.com/users/kparal/followers", + "following_url": "https://api.github.com/users/kparal/following{/other_user}", + "gists_url": "https://api.github.com/users/kparal/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kparal/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kparal/subscriptions", + "organizations_url": "https://api.github.com/users/kparal/orgs", + "repos_url": "https://api.github.com/users/kparal/repos", + "events_url": "https://api.github.com/users/kparal/events{/privacy}", + "received_events_url": "https://api.github.com/users/kparal/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 57857876, + "node_id": "MDU6TGFiZWw1Nzg1Nzg3Ng==", + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels/enhancement", + "name": "enhancement", + "color": "7fe8b2", + "default": true, + "description": "issue type" + }, + { + "id": 57858322, + "node_id": "MDU6TGFiZWw1Nzg1ODMyMg==", + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels/S:Accepted", + "name": "S:Accepted", + "color": "006B75", + "default": false, + "description": "State - Someone is interested in working on this but can still be picked up by someone else" + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2021-05-31T13:05:56Z", + "updated_at": "2024-02-02T18:31:52Z", + "closed_at": "2024-02-02T18:31:52Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "**What feature or enhancement would you like to add?**\r\nCurrently languages not supported by the default font are way too hidden for most people (who don't read corsixth wiki etc). There's nothing in the GUI telling you there are some languages hidden:\r\n![font selection](https://user-images.githubusercontent.com/755451/120196183-dba91c80-c21f-11eb-98ff-b97a2582f762.png)\r\n\r\nI believe this could be easily improved. Ideas:\r\n* Add a note into the tooltips (one above `Game Language`, the other shown in the screenshot). Something like:\r\n > Note: There are some languages hidden because the game font can't display them properly. Please select an appropriate font in the Folder menu and they will show up in this menu. Currently hidden languages are: Chinese, Czech, Russian, ...\r\n\r\n Create this tooltip dynamically to include the list of hidden languages, and display it only if there is no alternative font selected. If an alternate font is selected, replace it with this content:\r\n > Note: Some languages are displayed using an alternative font, because they are not supported by the default game font. If some characters are not displayed correctly, select a different font in the Folder menu.\r\n\r\n* Add some small info/warning icon right next to the `Game Language` text, to make sure user moves their cursor over the icon and displays the tooltip.\r\n\r\n* Alternatively, when the language drop-down is expanded, show a window with this hint next to the `Settings` window.\r\n\r\n* Alternatively, add a new item into the language drop-down to the very end, called e.g. `More languages`. When the user clicks on it, ignore the selection (keep the previous language), but display a window/tooltip with the hint.\r\n\r\n**What version of CorsixTH are you using?**\r\n0.65-beta2, Flathub\r\n", + "reactions": { + "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + "repository": { + "id": 12363387, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM2MzM4Nw==", + "name": "CorsixTH", + "full_name": "CorsixTH/CorsixTH", + "private": false, + "owner": { + "login": "CorsixTH", + "id": 4948760, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", + "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/CorsixTH", + "html_url": "https://github.com/CorsixTH", + "followers_url": "https://api.github.com/users/CorsixTH/followers", + "following_url": "https://api.github.com/users/CorsixTH/following{/other_user}", + "gists_url": "https://api.github.com/users/CorsixTH/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CorsixTH/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CorsixTH/subscriptions", + "organizations_url": "https://api.github.com/users/CorsixTH/orgs", + "repos_url": "https://api.github.com/users/CorsixTH/repos", + "events_url": "https://api.github.com/users/CorsixTH/events{/privacy}", + "received_events_url": "https://api.github.com/users/CorsixTH/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/CorsixTH/CorsixTH", + "description": "Open source clone of Theme Hospital", + "fork": false, + "url": "https://api.github.com/repos/CorsixTH/CorsixTH", + "forks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/forks", + "keys_url": "https://api.github.com/repos/CorsixTH/CorsixTH/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CorsixTH/CorsixTH/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CorsixTH/CorsixTH/teams", + "hooks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/hooks", + "issue_events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/events{/number}", + "events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/events", + "assignees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/assignees{/user}", + "branches_url": "https://api.github.com/repos/CorsixTH/CorsixTH/branches{/branch}", + "tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/tags", + "blobs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CorsixTH/CorsixTH/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CorsixTH/CorsixTH/languages", + "stargazers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/stargazers", + "contributors_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contributors", + "subscribers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscribers", + "subscription_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscription", + "commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contents/{+path}", + "compare_url": "https://api.github.com/repos/CorsixTH/CorsixTH/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CorsixTH/CorsixTH/merges", + "archive_url": "https://api.github.com/repos/CorsixTH/CorsixTH/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CorsixTH/CorsixTH/downloads", + "issues_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues{/number}", + "pulls_url": "https://api.github.com/repos/CorsixTH/CorsixTH/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CorsixTH/CorsixTH/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CorsixTH/CorsixTH/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels{/name}", + "releases_url": "https://api.github.com/repos/CorsixTH/CorsixTH/releases{/id}", + "deployments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/deployments", + "created_at": "2013-08-25T18:16:56Z", + "updated_at": "2024-01-30T06:47:16Z", + "pushed_at": "2024-02-02T18:19:55Z", + "git_url": "git://github.com/CorsixTH/CorsixTH.git", + "ssh_url": "git@github.com:CorsixTH/CorsixTH.git", + "clone_url": "https://github.com/CorsixTH/CorsixTH.git", + "svn_url": "https://github.com/CorsixTH/CorsixTH", + "homepage": null, + "size": 31482, + "stargazers_count": 2869, + "watchers_count": 2869, + "language": "Lua", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": true, + "forks_count": 300, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 256, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "game", + "opensource", + "remake", + "strategy-game", + "theme-hospital" + ], + "visibility": "public", + "forks": 300, + "open_issues": 256, + "watchers": 2869, + "default_branch": "master", + "custom_properties": {} + }, + "organization": { + "login": "CorsixTH", + "id": 4948760, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", + "url": "https://api.github.com/orgs/CorsixTH", + "repos_url": "https://api.github.com/orgs/CorsixTH/repos", + "events_url": "https://api.github.com/orgs/CorsixTH/events", + "hooks_url": "https://api.github.com/orgs/CorsixTH/hooks", + "issues_url": "https://api.github.com/orgs/CorsixTH/issues", + "members_url": "https://api.github.com/orgs/CorsixTH/members{/member}", + "public_members_url": "https://api.github.com/orgs/CorsixTH/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", + "description": "" + }, + "sender": { + "login": "tobylane", + "id": 552285, + "node_id": "MDQ6VXNlcjU1MjI4NQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/552285?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tobylane", + "html_url": "https://github.com/tobylane", + "followers_url": "https://api.github.com/users/tobylane/followers", + "following_url": "https://api.github.com/users/tobylane/following{/other_user}", + "gists_url": "https://api.github.com/users/tobylane/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tobylane/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tobylane/subscriptions", + "organizations_url": "https://api.github.com/users/tobylane/orgs", + "repos_url": "https://api.github.com/users/tobylane/repos", + "events_url": "https://api.github.com/users/tobylane/events{/privacy}", + "received_events_url": "https://api.github.com/users/tobylane/received_events", + "type": "User", + "site_admin": false + }, + "installation": { + "id": 325639, + "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMzI1NjM5" + } + }, { "action": "deleted", "issue": { @@ -22209,7 +22811,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -22466,7 +23069,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -22719,7 +23323,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -22999,7 +23604,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -23265,7 +23871,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -23553,7 +24160,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -23827,7 +24435,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -24051,7 +24660,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -24261,7 +24871,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -24583,7 +25194,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -24891,7 +25503,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -25170,7 +25783,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -25435,7 +26049,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -25700,7 +26315,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -26138,7 +26754,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -26335,7 +26952,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -26606,7 +27224,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -27034,7 +27653,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -27319,7 +27939,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -27604,7 +28225,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -27837,7 +28459,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -28056,7 +28679,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -28280,7 +28904,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -28490,7 +29115,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -28701,7 +29327,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -28998,7 +29625,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -29128,7 +29756,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -29258,7 +29887,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -29392,7 +30022,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -29523,7 +30154,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -30072,7 +30704,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "hacktocat", @@ -30213,7 +30846,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "hacktocat", @@ -30358,7 +30992,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -31080,7 +31715,8 @@ "is_template": false, "web_commit_signoff_required": false, "topics": [], - "visibility": "public" + "visibility": "public", + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -31394,7 +32030,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -31748,7 +32385,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -31906,7 +32544,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -32068,7 +32707,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -32226,7 +32866,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -33489,7 +34130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -33737,7 +34379,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -34066,7 +34709,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -34216,7 +34860,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -34534,7 +35179,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -34676,7 +35322,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -35094,7 +35741,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -35249,7 +35897,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -35597,7 +36246,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -35751,7 +36401,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -35909,7 +36560,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -36063,7 +36715,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -36231,7 +36884,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -36385,7 +37039,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -36543,7 +37198,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -36580,6 +37236,195 @@ "site_admin": false } }, + { + "action": "moved", + "changes": { "column_id": { "from": 19562548 } }, + "project_card": { + "url": "https://api.github.com/projects/columns/cards/91752560", + "project_url": "https://api.github.com/projects/14727333", + "column_url": "https://api.github.com/projects/columns/19562550", + "column_id": 19562550, + "id": 91752560, + "node_id": "PRC_lALOALyme84A4LilzgV4CHA", + "note": null, + "archived": false, + "creator": { + "login": "lewri", + "id": 20030128, + "node_id": "MDQ6VXNlcjIwMDMwMTI4", + "avatar_url": "https://avatars.githubusercontent.com/u/20030128?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lewri", + "html_url": "https://github.com/lewri", + "followers_url": "https://api.github.com/users/lewri/followers", + "following_url": "https://api.github.com/users/lewri/following{/other_user}", + "gists_url": "https://api.github.com/users/lewri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lewri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lewri/subscriptions", + "organizations_url": "https://api.github.com/users/lewri/orgs", + "repos_url": "https://api.github.com/users/lewri/repos", + "events_url": "https://api.github.com/users/lewri/events{/privacy}", + "received_events_url": "https://api.github.com/users/lewri/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-02-03T09:18:44Z", + "updated_at": "2024-02-03T09:18:56Z", + "content_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915", + "after_id": null + }, + "repository": { + "id": 12363387, + "node_id": "MDEwOlJlcG9zaXRvcnkxMjM2MzM4Nw==", + "name": "CorsixTH", + "full_name": "CorsixTH/CorsixTH", + "private": false, + "owner": { + "login": "CorsixTH", + "id": 4948760, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", + "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/CorsixTH", + "html_url": "https://github.com/CorsixTH", + "followers_url": "https://api.github.com/users/CorsixTH/followers", + "following_url": "https://api.github.com/users/CorsixTH/following{/other_user}", + "gists_url": "https://api.github.com/users/CorsixTH/gists{/gist_id}", + "starred_url": "https://api.github.com/users/CorsixTH/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/CorsixTH/subscriptions", + "organizations_url": "https://api.github.com/users/CorsixTH/orgs", + "repos_url": "https://api.github.com/users/CorsixTH/repos", + "events_url": "https://api.github.com/users/CorsixTH/events{/privacy}", + "received_events_url": "https://api.github.com/users/CorsixTH/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/CorsixTH/CorsixTH", + "description": "Open source clone of Theme Hospital", + "fork": false, + "url": "https://api.github.com/repos/CorsixTH/CorsixTH", + "forks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/forks", + "keys_url": "https://api.github.com/repos/CorsixTH/CorsixTH/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/CorsixTH/CorsixTH/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/CorsixTH/CorsixTH/teams", + "hooks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/hooks", + "issue_events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/events{/number}", + "events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/events", + "assignees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/assignees{/user}", + "branches_url": "https://api.github.com/repos/CorsixTH/CorsixTH/branches{/branch}", + "tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/tags", + "blobs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/CorsixTH/CorsixTH/statuses/{sha}", + "languages_url": "https://api.github.com/repos/CorsixTH/CorsixTH/languages", + "stargazers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/stargazers", + "contributors_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contributors", + "subscribers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscribers", + "subscription_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscription", + "commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contents/{+path}", + "compare_url": "https://api.github.com/repos/CorsixTH/CorsixTH/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/CorsixTH/CorsixTH/merges", + "archive_url": "https://api.github.com/repos/CorsixTH/CorsixTH/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/CorsixTH/CorsixTH/downloads", + "issues_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues{/number}", + "pulls_url": "https://api.github.com/repos/CorsixTH/CorsixTH/pulls{/number}", + "milestones_url": "https://api.github.com/repos/CorsixTH/CorsixTH/milestones{/number}", + "notifications_url": "https://api.github.com/repos/CorsixTH/CorsixTH/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels{/name}", + "releases_url": "https://api.github.com/repos/CorsixTH/CorsixTH/releases{/id}", + "deployments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/deployments", + "created_at": "2013-08-25T18:16:56Z", + "updated_at": "2024-01-30T06:47:16Z", + "pushed_at": "2024-02-02T18:19:55Z", + "git_url": "git://github.com/CorsixTH/CorsixTH.git", + "ssh_url": "git@github.com:CorsixTH/CorsixTH.git", + "clone_url": "https://github.com/CorsixTH/CorsixTH.git", + "svn_url": "https://github.com/CorsixTH/CorsixTH", + "homepage": null, + "size": 31482, + "stargazers_count": 2869, + "watchers_count": 2869, + "language": "Lua", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": true, + "forks_count": 300, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 256, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "game", + "opensource", + "remake", + "strategy-game", + "theme-hospital" + ], + "visibility": "public", + "forks": 300, + "open_issues": 256, + "watchers": 2869, + "default_branch": "master", + "custom_properties": {} + }, + "organization": { + "login": "CorsixTH", + "id": 4948760, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", + "url": "https://api.github.com/orgs/CorsixTH", + "repos_url": "https://api.github.com/orgs/CorsixTH/repos", + "events_url": "https://api.github.com/orgs/CorsixTH/events", + "hooks_url": "https://api.github.com/orgs/CorsixTH/hooks", + "issues_url": "https://api.github.com/orgs/CorsixTH/issues", + "members_url": "https://api.github.com/orgs/CorsixTH/members{/member}", + "public_members_url": "https://api.github.com/orgs/CorsixTH/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", + "description": "" + }, + "sender": { + "login": "lewri", + "id": 20030128, + "node_id": "MDQ6VXNlcjIwMDMwMTI4", + "avatar_url": "https://avatars.githubusercontent.com/u/20030128?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lewri", + "html_url": "https://github.com/lewri", + "followers_url": "https://api.github.com/users/lewri/followers", + "following_url": "https://api.github.com/users/lewri/following{/other_user}", + "gists_url": "https://api.github.com/users/lewri/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lewri/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lewri/subscriptions", + "organizations_url": "https://api.github.com/users/lewri/orgs", + "repos_url": "https://api.github.com/users/lewri/repos", + "events_url": "https://api.github.com/users/lewri/events{/privacy}", + "received_events_url": "https://api.github.com/users/lewri/received_events", + "type": "User", + "site_admin": false + }, + "installation": { + "id": 325639, + "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMzI1NjM5" + } + }, { "action": "moved", "changes": { "column_id": { "from": 9999467 } }, @@ -36713,7 +37558,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -37012,7 +37858,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -37143,7 +37990,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -37279,7 +38127,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -38077,7 +38926,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -38197,7 +39047,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -39257,7 +40108,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -39807,7 +40659,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -40323,7 +41176,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -40839,7 +41693,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -41369,7 +42224,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -41881,7 +42737,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -42397,7 +43254,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "hellomouse", @@ -42987,7 +43845,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -43567,7 +44426,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -44097,7 +44957,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -44613,7 +45474,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -45143,7 +46005,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -45659,7 +46522,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -46175,7 +47039,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -46705,7 +47570,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -47217,7 +48083,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -47733,7 +48600,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "hellomouse", @@ -48259,7 +49127,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -48775,7 +49644,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -49305,7 +50175,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -49855,7 +50726,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -50407,7 +51279,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -50977,7 +51850,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -51547,7 +52421,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -52065,7 +52940,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -52569,7 +53445,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -53078,7 +53955,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -53573,7 +54451,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -54645,7 +55524,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -55201,7 +56081,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -55743,7 +56624,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -56855,7 +57737,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -57423,7 +58306,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -58005,7 +58889,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -58574,7 +59459,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -59715,7 +60601,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -60290,7 +61177,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -60692,7 +61580,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -60844,7 +61733,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", @@ -60982,7 +61872,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", @@ -61117,7 +62008,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", @@ -61301,7 +62193,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", @@ -61490,7 +62383,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -61869,7 +62763,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62030,7 +62925,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62190,7 +63086,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62354,7 +63251,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62530,7 +63428,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62695,7 +63594,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62868,7 +63768,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63028,7 +63929,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63189,7 +64091,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63349,7 +64252,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63510,7 +64414,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63670,7 +64575,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63936,7 +64842,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -64227,7 +65134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -64362,7 +65270,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -64502,7 +65411,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -64638,7 +65548,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -64773,7 +65684,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -64894,7 +65806,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -65029,7 +65942,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -65150,7 +66064,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -65286,7 +66201,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -65451,7 +66367,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -65598,7 +66515,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -65749,7 +66667,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -66038,7 +66957,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -66340,7 +67260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "github", @@ -66475,7 +67396,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -66646,7 +67568,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "github", @@ -67435,7 +68358,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -67557,7 +68481,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -68055,7 +68980,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -68243,7 +69169,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -68471,7 +69398,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -68813,7 +69741,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -69139,7 +70068,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -69462,7 +70392,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -69609,7 +70540,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -69890,7 +70822,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -70011,7 +70944,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -70306,7 +71240,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -70774,7 +71709,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -70999,7 +71935,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -71168,7 +72105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -71399,7 +72337,8 @@ "forks": 0, "open_issues": 8, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "renovate[bot]", @@ -71549,7 +72488,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -71830,7 +72770,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "lineville", @@ -71988,7 +72929,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "lineville", @@ -72476,7 +73418,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", @@ -72845,7 +73788,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", @@ -73238,7 +74182,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", @@ -73607,7 +74552,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", diff --git a/payload-examples/api.github.com/issue_comment/created.1.payload.json b/payload-examples/api.github.com/issue_comment/created.1.payload.json index 528514ee5..63ff19e85 100644 --- a/payload-examples/api.github.com/issue_comment/created.1.payload.json +++ b/payload-examples/api.github.com/issue_comment/created.1.payload.json @@ -209,7 +209,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issue_comment/created.payload.json b/payload-examples/api.github.com/issue_comment/created.payload.json index added6ceb..6a89efb01 100644 --- a/payload-examples/api.github.com/issue_comment/created.payload.json +++ b/payload-examples/api.github.com/issue_comment/created.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issue_comment/created.with-installation.payload.json b/payload-examples/api.github.com/issue_comment/created.with-installation.payload.json index 6926a7e84..51b045a4c 100644 --- a/payload-examples/api.github.com/issue_comment/created.with-installation.payload.json +++ b/payload-examples/api.github.com/issue_comment/created.with-installation.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issue_comment/created.with-organization.payload.json b/payload-examples/api.github.com/issue_comment/created.with-organization.payload.json index 2055b9ca4..1b901988c 100644 --- a/payload-examples/api.github.com/issue_comment/created.with-organization.payload.json +++ b/payload-examples/api.github.com/issue_comment/created.with-organization.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issue_comment/deleted.payload.json b/payload-examples/api.github.com/issue_comment/deleted.payload.json index a9b73965a..823b0aa17 100644 --- a/payload-examples/api.github.com/issue_comment/deleted.payload.json +++ b/payload-examples/api.github.com/issue_comment/deleted.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issue_comment/deleted.with-organization.payload.json b/payload-examples/api.github.com/issue_comment/deleted.with-organization.payload.json index 882dbfe2f..ba57c9822 100644 --- a/payload-examples/api.github.com/issue_comment/deleted.with-organization.payload.json +++ b/payload-examples/api.github.com/issue_comment/deleted.with-organization.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issue_comment/edited.payload.json b/payload-examples/api.github.com/issue_comment/edited.payload.json index dfe9c9d64..1a1f445c9 100644 --- a/payload-examples/api.github.com/issue_comment/edited.payload.json +++ b/payload-examples/api.github.com/issue_comment/edited.payload.json @@ -287,7 +287,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issue_comment/edited.with-organization.payload.json b/payload-examples/api.github.com/issue_comment/edited.with-organization.payload.json index 70f0da1a1..33ce3c0e7 100644 --- a/payload-examples/api.github.com/issue_comment/edited.with-organization.payload.json +++ b/payload-examples/api.github.com/issue_comment/edited.with-organization.payload.json @@ -287,7 +287,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/assigned.payload.json b/payload-examples/api.github.com/issues/assigned.payload.json index d59751b31..5b9414393 100644 --- a/payload-examples/api.github.com/issues/assigned.payload.json +++ b/payload-examples/api.github.com/issues/assigned.payload.json @@ -260,7 +260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/assigned.with-installation.payload.json b/payload-examples/api.github.com/issues/assigned.with-installation.payload.json index 36b5dc09e..4a8895d52 100644 --- a/payload-examples/api.github.com/issues/assigned.with-installation.payload.json +++ b/payload-examples/api.github.com/issues/assigned.with-installation.payload.json @@ -260,7 +260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/assigned.with-organization.payload.json b/payload-examples/api.github.com/issues/assigned.with-organization.payload.json index 9be60f4d5..f25d9ae82 100644 --- a/payload-examples/api.github.com/issues/assigned.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/assigned.with-organization.payload.json @@ -260,7 +260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/deleted.payload.json b/payload-examples/api.github.com/issues/deleted.payload.json index 9f1cbca75..64289dd31 100644 --- a/payload-examples/api.github.com/issues/deleted.payload.json +++ b/payload-examples/api.github.com/issues/deleted.payload.json @@ -242,7 +242,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/demilestoned.payload.json b/payload-examples/api.github.com/issues/demilestoned.payload.json index 4ad9ea0a9..b916deacc 100644 --- a/payload-examples/api.github.com/issues/demilestoned.payload.json +++ b/payload-examples/api.github.com/issues/demilestoned.payload.json @@ -228,7 +228,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/demilestoned.with-organization.payload.json b/payload-examples/api.github.com/issues/demilestoned.with-organization.payload.json index f8b092d2b..17d14b47d 100644 --- a/payload-examples/api.github.com/issues/demilestoned.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/demilestoned.with-organization.payload.json @@ -228,7 +228,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/edited.payload.json b/payload-examples/api.github.com/issues/edited.payload.json index 5536b1c35..6da22a241 100644 --- a/payload-examples/api.github.com/issues/edited.payload.json +++ b/payload-examples/api.github.com/issues/edited.payload.json @@ -241,7 +241,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/edited.with-organization.payload.json b/payload-examples/api.github.com/issues/edited.with-organization.payload.json index 1c6b16363..95e6b5857 100644 --- a/payload-examples/api.github.com/issues/edited.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/edited.with-organization.payload.json @@ -241,7 +241,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/labeled.payload.json b/payload-examples/api.github.com/issues/labeled.payload.json index b6e209adc..e430cdbd9 100644 --- a/payload-examples/api.github.com/issues/labeled.payload.json +++ b/payload-examples/api.github.com/issues/labeled.payload.json @@ -249,7 +249,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/labeled.with-organization.payload.json b/payload-examples/api.github.com/issues/labeled.with-organization.payload.json index cd16cfe17..a4d174b71 100644 --- a/payload-examples/api.github.com/issues/labeled.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/labeled.with-organization.payload.json @@ -249,7 +249,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/locked.payload.json b/payload-examples/api.github.com/issues/locked.payload.json index 47735f4dd..f721816c2 100644 --- a/payload-examples/api.github.com/issues/locked.payload.json +++ b/payload-examples/api.github.com/issues/locked.payload.json @@ -185,7 +185,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/locked.with-organization.payload.json b/payload-examples/api.github.com/issues/locked.with-organization.payload.json index fde0bd3f4..8275c7dac 100644 --- a/payload-examples/api.github.com/issues/locked.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/locked.with-organization.payload.json @@ -185,7 +185,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/milestoned.payload.json b/payload-examples/api.github.com/issues/milestoned.payload.json index 966dabd38..da7019270 100644 --- a/payload-examples/api.github.com/issues/milestoned.payload.json +++ b/payload-examples/api.github.com/issues/milestoned.payload.json @@ -283,7 +283,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/milestoned.with-organization.payload.json b/payload-examples/api.github.com/issues/milestoned.with-organization.payload.json index e59f171cf..c58aa035b 100644 --- a/payload-examples/api.github.com/issues/milestoned.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/milestoned.with-organization.payload.json @@ -283,7 +283,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/opened.payload.json b/payload-examples/api.github.com/issues/opened.payload.json index e831ea0ec..b37c66f98 100644 --- a/payload-examples/api.github.com/issues/opened.payload.json +++ b/payload-examples/api.github.com/issues/opened.payload.json @@ -240,7 +240,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/opened.with-empty-body.payload.json b/payload-examples/api.github.com/issues/opened.with-empty-body.payload.json index 907b37223..e6284d35f 100644 --- a/payload-examples/api.github.com/issues/opened.with-empty-body.payload.json +++ b/payload-examples/api.github.com/issues/opened.with-empty-body.payload.json @@ -240,7 +240,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/opened.with-organization.payload.json b/payload-examples/api.github.com/issues/opened.with-organization.payload.json index 27b3d321e..1993eee0c 100644 --- a/payload-examples/api.github.com/issues/opened.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/opened.with-organization.payload.json @@ -240,7 +240,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/opened.with-transfer.payload.json b/payload-examples/api.github.com/issues/opened.with-transfer.payload.json index 7dc726b62..8f6eb1b02 100644 --- a/payload-examples/api.github.com/issues/opened.with-transfer.payload.json +++ b/payload-examples/api.github.com/issues/opened.with-transfer.payload.json @@ -399,7 +399,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/pinned.payload.json b/payload-examples/api.github.com/issues/pinned.payload.json index 0a9f5d2ce..5b290c2b8 100644 --- a/payload-examples/api.github.com/issues/pinned.payload.json +++ b/payload-examples/api.github.com/issues/pinned.payload.json @@ -172,7 +172,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/reopened.payload.json b/payload-examples/api.github.com/issues/reopened.payload.json index e9ddd8ce4..cab53ad15 100644 --- a/payload-examples/api.github.com/issues/reopened.payload.json +++ b/payload-examples/api.github.com/issues/reopened.payload.json @@ -242,7 +242,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/transferred.payload.json b/payload-examples/api.github.com/issues/transferred.payload.json index 2eec7987a..cc233497c 100644 --- a/payload-examples/api.github.com/issues/transferred.payload.json +++ b/payload-examples/api.github.com/issues/transferred.payload.json @@ -399,7 +399,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/unassigned.payload.json b/payload-examples/api.github.com/issues/unassigned.payload.json index 8aaa515cb..ac8e83ed0 100644 --- a/payload-examples/api.github.com/issues/unassigned.payload.json +++ b/payload-examples/api.github.com/issues/unassigned.payload.json @@ -260,7 +260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/unassigned.with-organization.payload.json b/payload-examples/api.github.com/issues/unassigned.with-organization.payload.json index 1ebca04ee..c279b6458 100644 --- a/payload-examples/api.github.com/issues/unassigned.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/unassigned.with-organization.payload.json @@ -260,7 +260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/unlabeled.payload.json b/payload-examples/api.github.com/issues/unlabeled.payload.json index 9b6ae0536..0cfa014ad 100644 --- a/payload-examples/api.github.com/issues/unlabeled.payload.json +++ b/payload-examples/api.github.com/issues/unlabeled.payload.json @@ -194,7 +194,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/unlabeled.with-organization.payload.json b/payload-examples/api.github.com/issues/unlabeled.with-organization.payload.json index 6fe6a828e..7733b2337 100644 --- a/payload-examples/api.github.com/issues/unlabeled.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/unlabeled.with-organization.payload.json @@ -194,7 +194,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/unlocked.payload.json b/payload-examples/api.github.com/issues/unlocked.payload.json index e346b2409..af61697e4 100644 --- a/payload-examples/api.github.com/issues/unlocked.payload.json +++ b/payload-examples/api.github.com/issues/unlocked.payload.json @@ -185,7 +185,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/unlocked.with-organization.payload.json b/payload-examples/api.github.com/issues/unlocked.with-organization.payload.json index 01d51187a..1a5996bf2 100644 --- a/payload-examples/api.github.com/issues/unlocked.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/unlocked.with-organization.payload.json @@ -185,7 +185,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/unpinned.payload.json b/payload-examples/api.github.com/issues/unpinned.payload.json index 0d8ac84b2..9b0415745 100644 --- a/payload-examples/api.github.com/issues/unpinned.payload.json +++ b/payload-examples/api.github.com/issues/unpinned.payload.json @@ -172,7 +172,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/label/created.1.payload.json b/payload-examples/api.github.com/label/created.1.payload.json index 417a4bd7c..b7f6debd1 100644 --- a/payload-examples/api.github.com/label/created.1.payload.json +++ b/payload-examples/api.github.com/label/created.1.payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/label/created.payload.json b/payload-examples/api.github.com/label/created.payload.json index 51160a155..26ed2c4d1 100644 --- a/payload-examples/api.github.com/label/created.payload.json +++ b/payload-examples/api.github.com/label/created.payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/label/created.with-installation.payload.json b/payload-examples/api.github.com/label/created.with-installation.payload.json index 46db479c1..c9d9d7d07 100644 --- a/payload-examples/api.github.com/label/created.with-installation.payload.json +++ b/payload-examples/api.github.com/label/created.with-installation.payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/label/deleted.payload.json b/payload-examples/api.github.com/label/deleted.payload.json index b9ecbd51c..289369f64 100644 --- a/payload-examples/api.github.com/label/deleted.payload.json +++ b/payload-examples/api.github.com/label/deleted.payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/label/edited.payload.json b/payload-examples/api.github.com/label/edited.payload.json index 96d20577c..1ab8d3957 100644 --- a/payload-examples/api.github.com/label/edited.payload.json +++ b/payload-examples/api.github.com/label/edited.payload.json @@ -106,7 +106,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/member/added.payload.json b/payload-examples/api.github.com/member/added.payload.json index 6d09b5f22..0355f0232 100644 --- a/payload-examples/api.github.com/member/added.payload.json +++ b/payload-examples/api.github.com/member/added.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "hacktocat", diff --git a/payload-examples/api.github.com/member/added.with-installation.payload.json b/payload-examples/api.github.com/member/added.with-installation.payload.json index 892769ad9..4da9b1996 100644 --- a/payload-examples/api.github.com/member/added.with-installation.payload.json +++ b/payload-examples/api.github.com/member/added.with-installation.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "hacktocat", diff --git a/payload-examples/api.github.com/member/edited.payload.json b/payload-examples/api.github.com/member/edited.payload.json index f242db2af..c723b124e 100644 --- a/payload-examples/api.github.com/member/edited.payload.json +++ b/payload-examples/api.github.com/member/edited.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/merge_group/checks_requested.payload.json b/payload-examples/api.github.com/merge_group/checks_requested.payload.json index 15a5e744c..f2d902573 100644 --- a/payload-examples/api.github.com/merge_group/checks_requested.payload.json +++ b/payload-examples/api.github.com/merge_group/checks_requested.payload.json @@ -116,7 +116,8 @@ "is_template": false, "web_commit_signoff_required": false, "topics": [], - "visibility": "public" + "visibility": "public", + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/meta/deleted.payload.json b/payload-examples/api.github.com/meta/deleted.payload.json index 04ef9e5ca..50423a285 100644 --- a/payload-examples/api.github.com/meta/deleted.payload.json +++ b/payload-examples/api.github.com/meta/deleted.payload.json @@ -111,7 +111,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/milestone/closed.payload.json b/payload-examples/api.github.com/milestone/closed.payload.json index 780df6c8d..86bee9310 100644 --- a/payload-examples/api.github.com/milestone/closed.payload.json +++ b/payload-examples/api.github.com/milestone/closed.payload.json @@ -133,7 +133,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/milestone/closed.with-installation.payload.json b/payload-examples/api.github.com/milestone/closed.with-installation.payload.json index c619ba0c3..17fb1929a 100644 --- a/payload-examples/api.github.com/milestone/closed.with-installation.payload.json +++ b/payload-examples/api.github.com/milestone/closed.with-installation.payload.json @@ -133,7 +133,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/milestone/created.payload.json b/payload-examples/api.github.com/milestone/created.payload.json index ab738cd4d..05808fbff 100644 --- a/payload-examples/api.github.com/milestone/created.payload.json +++ b/payload-examples/api.github.com/milestone/created.payload.json @@ -133,7 +133,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/milestone/deleted.payload.json b/payload-examples/api.github.com/milestone/deleted.payload.json index da33e5357..8cc7ef598 100644 --- a/payload-examples/api.github.com/milestone/deleted.payload.json +++ b/payload-examples/api.github.com/milestone/deleted.payload.json @@ -133,7 +133,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/package/published.docker.payload.json b/payload-examples/api.github.com/package/published.docker.payload.json index c0338063d..b1bda4f9b 100644 --- a/payload-examples/api.github.com/package/published.docker.payload.json +++ b/payload-examples/api.github.com/package/published.docker.payload.json @@ -349,7 +349,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/package/published.npm.payload.json b/payload-examples/api.github.com/package/published.npm.payload.json index df283a28d..c50d9dc7e 100644 --- a/payload-examples/api.github.com/package/published.npm.payload.json +++ b/payload-examples/api.github.com/package/published.npm.payload.json @@ -223,7 +223,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/page_build/payload.json b/payload-examples/api.github.com/page_build/payload.json index d49fb358a..20a7e4490 100644 --- a/payload-examples/api.github.com/page_build/payload.json +++ b/payload-examples/api.github.com/page_build/payload.json @@ -125,7 +125,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/page_build/with-installation.payload.json b/payload-examples/api.github.com/page_build/with-installation.payload.json index 56eec1f09..75eef3fde 100644 --- a/payload-examples/api.github.com/page_build/with-installation.payload.json +++ b/payload-examples/api.github.com/page_build/with-installation.payload.json @@ -125,7 +125,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/ping/payload.json b/payload-examples/api.github.com/ping/payload.json index bd7f7e237..e6d5ed31b 100644 --- a/payload-examples/api.github.com/ping/payload.json +++ b/payload-examples/api.github.com/ping/payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/ping/with-app_id.payload.json b/payload-examples/api.github.com/ping/with-app_id.payload.json index fa27229a8..463b8d294 100644 --- a/payload-examples/api.github.com/ping/with-app_id.payload.json +++ b/payload-examples/api.github.com/ping/with-app_id.payload.json @@ -117,7 +117,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project/created.payload.json b/payload-examples/api.github.com/project/created.payload.json index 80ac6781e..a532cb765 100644 --- a/payload-examples/api.github.com/project/created.payload.json +++ b/payload-examples/api.github.com/project/created.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project/created.with-installation.payload.json b/payload-examples/api.github.com/project/created.with-installation.payload.json index a31aa31c4..5248c3895 100644 --- a/payload-examples/api.github.com/project/created.with-installation.payload.json +++ b/payload-examples/api.github.com/project/created.with-installation.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/created.payload.json b/payload-examples/api.github.com/project_card/created.payload.json index c40151817..183093b46 100644 --- a/payload-examples/api.github.com/project_card/created.payload.json +++ b/payload-examples/api.github.com/project_card/created.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/created.with-installation.payload.json b/payload-examples/api.github.com/project_card/created.with-installation.payload.json index 60d03a68a..c29293a0c 100644 --- a/payload-examples/api.github.com/project_card/created.with-installation.payload.json +++ b/payload-examples/api.github.com/project_card/created.with-installation.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/created.with-no-note.payload.json b/payload-examples/api.github.com/project_card/created.with-no-note.payload.json index 5318cb914..2ab81528f 100644 --- a/payload-examples/api.github.com/project_card/created.with-no-note.payload.json +++ b/payload-examples/api.github.com/project_card/created.with-no-note.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/created.with-organization.payload.json b/payload-examples/api.github.com/project_card/created.with-organization.payload.json index 4bada12ad..fc51a3222 100644 --- a/payload-examples/api.github.com/project_card/created.with-organization.payload.json +++ b/payload-examples/api.github.com/project_card/created.with-organization.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/project_card/deleted.payload.json b/payload-examples/api.github.com/project_card/deleted.payload.json index 012f44a34..81235a063 100644 --- a/payload-examples/api.github.com/project_card/deleted.payload.json +++ b/payload-examples/api.github.com/project_card/deleted.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/deleted.with-installation.payload.json b/payload-examples/api.github.com/project_card/deleted.with-installation.payload.json index 10b9ed7ce..6e4193083 100644 --- a/payload-examples/api.github.com/project_card/deleted.with-installation.payload.json +++ b/payload-examples/api.github.com/project_card/deleted.with-installation.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/deleted.with-organization.payload.json b/payload-examples/api.github.com/project_card/deleted.with-organization.payload.json index f2b5b95a4..70df9ae61 100644 --- a/payload-examples/api.github.com/project_card/deleted.with-organization.payload.json +++ b/payload-examples/api.github.com/project_card/deleted.with-organization.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/project_card/moved.payload.json b/payload-examples/api.github.com/project_card/moved.payload.json index 03bf53e4e..11b9f7021 100644 --- a/payload-examples/api.github.com/project_card/moved.payload.json +++ b/payload-examples/api.github.com/project_card/moved.payload.json @@ -131,7 +131,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_column/created.payload.json b/payload-examples/api.github.com/project_column/created.payload.json index 00e30fe2a..342bad80a 100644 --- a/payload-examples/api.github.com/project_column/created.payload.json +++ b/payload-examples/api.github.com/project_column/created.payload.json @@ -106,7 +106,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_column/created.with-installation.payload.json b/payload-examples/api.github.com/project_column/created.with-installation.payload.json index 63636b5aa..a81f18678 100644 --- a/payload-examples/api.github.com/project_column/created.with-installation.payload.json +++ b/payload-examples/api.github.com/project_column/created.with-installation.payload.json @@ -106,7 +106,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_column/edited.payload.json b/payload-examples/api.github.com/project_column/edited.payload.json index 6ebed86ba..480174ad0 100644 --- a/payload-examples/api.github.com/project_column/edited.payload.json +++ b/payload-examples/api.github.com/project_column/edited.payload.json @@ -107,7 +107,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/public/payload.json b/payload-examples/api.github.com/public/payload.json index eaaafe532..22e0b3fd7 100644 --- a/payload-examples/api.github.com/public/payload.json +++ b/payload-examples/api.github.com/public/payload.json @@ -95,7 +95,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/public/with-installation.payload.json b/payload-examples/api.github.com/public/with-installation.payload.json index c5bb05d74..0a6bb69fa 100644 --- a/payload-examples/api.github.com/public/with-installation.payload.json +++ b/payload-examples/api.github.com/public/with-installation.payload.json @@ -95,7 +95,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request/assigned.payload.json b/payload-examples/api.github.com/pull_request/assigned.payload.json index bcddf6434..d347e3d99 100644 --- a/payload-examples/api.github.com/pull_request/assigned.payload.json +++ b/payload-examples/api.github.com/pull_request/assigned.payload.json @@ -505,7 +505,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json b/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json index 70a5e11f3..0f1660a79 100644 --- a/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json @@ -519,7 +519,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/closed.payload.json b/payload-examples/api.github.com/pull_request/closed.payload.json index d38dfa8bb..820a63b06 100644 --- a/payload-examples/api.github.com/pull_request/closed.payload.json +++ b/payload-examples/api.github.com/pull_request/closed.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json b/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json index e4b0c165a..629667ea5 100644 --- a/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json b/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json index 0752c4166..3fa799f0d 100644 --- a/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json +++ b/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json b/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json index e2666fe20..4569874c1 100644 --- a/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json +++ b/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json b/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json index 92c736a07..962c60176 100644 --- a/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "hellomouse", diff --git a/payload-examples/api.github.com/pull_request/labeled.payload.json b/payload-examples/api.github.com/pull_request/labeled.payload.json index 942b5dcba..1a9dce0c9 100644 --- a/payload-examples/api.github.com/pull_request/labeled.payload.json +++ b/payload-examples/api.github.com/pull_request/labeled.payload.json @@ -549,7 +549,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json b/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json index be6a0bb52..22078ce57 100644 --- a/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json @@ -549,7 +549,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/locked.payload.json b/payload-examples/api.github.com/pull_request/locked.payload.json index b860d2618..bc34efaf1 100644 --- a/payload-examples/api.github.com/pull_request/locked.payload.json +++ b/payload-examples/api.github.com/pull_request/locked.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json b/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json index 1482ccd54..9047499e8 100644 --- a/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/opened.payload.json b/payload-examples/api.github.com/pull_request/opened.payload.json index 49572795a..2b7f8568b 100644 --- a/payload-examples/api.github.com/pull_request/opened.payload.json +++ b/payload-examples/api.github.com/pull_request/opened.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/opened.with-null-body.json b/payload-examples/api.github.com/pull_request/opened.with-null-body.json index 929411951..87a9fd033 100644 --- a/payload-examples/api.github.com/pull_request/opened.with-null-body.json +++ b/payload-examples/api.github.com/pull_request/opened.with-null-body.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json b/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json index e10887f6f..2cbd0142a 100644 --- a/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/ready_for_review.payload.json b/payload-examples/api.github.com/pull_request/ready_for_review.payload.json index 12c7df35d..cef73ce29 100644 --- a/payload-examples/api.github.com/pull_request/ready_for_review.payload.json +++ b/payload-examples/api.github.com/pull_request/ready_for_review.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json b/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json index f0152b40c..c91ff8e26 100644 --- a/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json +++ b/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json b/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json index 7130d1bdc..97249de4c 100644 --- a/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "hellomouse", diff --git a/payload-examples/api.github.com/pull_request/reopened.payload.json b/payload-examples/api.github.com/pull_request/reopened.payload.json index de80da30a..cd84dc581 100644 --- a/payload-examples/api.github.com/pull_request/reopened.payload.json +++ b/payload-examples/api.github.com/pull_request/reopened.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json b/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json index 46c48d0d4..8c5c77a22 100644 --- a/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/review_request_removed.payload.json b/payload-examples/api.github.com/pull_request/review_request_removed.payload.json index b919398a7..1d34ab531 100644 --- a/payload-examples/api.github.com/pull_request/review_request_removed.payload.json +++ b/payload-examples/api.github.com/pull_request/review_request_removed.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/review_requested.payload.json b/payload-examples/api.github.com/pull_request/review_requested.payload.json index 166f7c3d7..e405c7795 100644 --- a/payload-examples/api.github.com/pull_request/review_requested.payload.json +++ b/payload-examples/api.github.com/pull_request/review_requested.payload.json @@ -485,7 +485,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/synchronize.payload.json b/payload-examples/api.github.com/pull_request/synchronize.payload.json index 0d6da7e9c..8df7d6603 100644 --- a/payload-examples/api.github.com/pull_request/synchronize.payload.json +++ b/payload-examples/api.github.com/pull_request/synchronize.payload.json @@ -487,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unassigned.payload.json b/payload-examples/api.github.com/pull_request/unassigned.payload.json index d8d616fd0..831cde3ea 100644 --- a/payload-examples/api.github.com/pull_request/unassigned.payload.json +++ b/payload-examples/api.github.com/pull_request/unassigned.payload.json @@ -539,7 +539,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json b/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json index f272cd2df..05100e871 100644 --- a/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json @@ -539,7 +539,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unlabeled.payload.json b/payload-examples/api.github.com/pull_request/unlabeled.payload.json index 98a9caf06..ec942a6e5 100644 --- a/payload-examples/api.github.com/pull_request/unlabeled.payload.json +++ b/payload-examples/api.github.com/pull_request/unlabeled.payload.json @@ -473,7 +473,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json b/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json index 596405c85..55d87a11e 100644 --- a/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json @@ -473,7 +473,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unlocked.payload.json b/payload-examples/api.github.com/pull_request/unlocked.payload.json index a82d0fbe2..619dd5755 100644 --- a/payload-examples/api.github.com/pull_request/unlocked.payload.json +++ b/payload-examples/api.github.com/pull_request/unlocked.payload.json @@ -464,7 +464,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json b/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json index a2d8bef03..011226ef9 100644 --- a/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json @@ -464,7 +464,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review/dismissed.payload.json b/payload-examples/api.github.com/pull_request_review/dismissed.payload.json index ba46228b9..def03f8f6 100644 --- a/payload-examples/api.github.com/pull_request_review/dismissed.payload.json +++ b/payload-examples/api.github.com/pull_request_review/dismissed.payload.json @@ -511,7 +511,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request_review/submitted.payload.json b/payload-examples/api.github.com/pull_request_review/submitted.payload.json index a9fed9c13..ace81712c 100644 --- a/payload-examples/api.github.com/pull_request_review/submitted.payload.json +++ b/payload-examples/api.github.com/pull_request_review/submitted.payload.json @@ -511,7 +511,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json b/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json index c63cddcc5..3e58238a7 100644 --- a/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json @@ -511,7 +511,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/pull_request_review_comment/created.payload.json b/payload-examples/api.github.com/pull_request_review_comment/created.payload.json index fb087bafe..e11bf4144 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/created.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/created.payload.json @@ -537,7 +537,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json b/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json index dd281e70c..c9e82c81e 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json @@ -537,7 +537,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json b/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json index ef5426135..ae2f9363e 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json @@ -537,7 +537,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json b/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json index 11f41f9d5..d350805f7 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json @@ -538,7 +538,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json b/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json index cd41d1b15..d200233cd 100644 --- a/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json +++ b/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json @@ -544,7 +544,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json b/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json index fad9880ee..c3a1b15fe 100644 --- a/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json +++ b/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json @@ -544,7 +544,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/push/1.payload.json b/payload-examples/api.github.com/push/1.payload.json index 26029e9e5..d9b590330 100644 --- a/payload-examples/api.github.com/push/1.payload.json +++ b/payload-examples/api.github.com/push/1.payload.json @@ -110,7 +110,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/push/payload.json b/payload-examples/api.github.com/push/payload.json index b7c29d987..03dfa2b11 100644 --- a/payload-examples/api.github.com/push/payload.json +++ b/payload-examples/api.github.com/push/payload.json @@ -109,7 +109,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", diff --git a/payload-examples/api.github.com/push/with-installation.payload.json b/payload-examples/api.github.com/push/with-installation.payload.json index 0fd05f9df..610911452 100644 --- a/payload-examples/api.github.com/push/with-installation.payload.json +++ b/payload-examples/api.github.com/push/with-installation.payload.json @@ -109,7 +109,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", diff --git a/payload-examples/api.github.com/push/with-new-branch.payload.json b/payload-examples/api.github.com/push/with-new-branch.payload.json index 1920ac88c..a955ae5c5 100644 --- a/payload-examples/api.github.com/push/with-new-branch.payload.json +++ b/payload-examples/api.github.com/push/with-new-branch.payload.json @@ -102,7 +102,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", diff --git a/payload-examples/api.github.com/push/with-no-username-committer.payload.json b/payload-examples/api.github.com/push/with-no-username-committer.payload.json index 6e55de92a..7332883e9 100644 --- a/payload-examples/api.github.com/push/with-no-username-committer.payload.json +++ b/payload-examples/api.github.com/push/with-no-username-committer.payload.json @@ -102,7 +102,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", diff --git a/payload-examples/api.github.com/push/with-organization.payload.json b/payload-examples/api.github.com/push/with-organization.payload.json index c0d6cb0db..d30c837b7 100644 --- a/payload-examples/api.github.com/push/with-organization.payload.json +++ b/payload-examples/api.github.com/push/with-organization.payload.json @@ -109,7 +109,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/registry_package/published.docker.payload.json b/payload-examples/api.github.com/registry_package/published.docker.payload.json index 08b0ddb58..c7fb28cde 100644 --- a/payload-examples/api.github.com/registry_package/published.docker.payload.json +++ b/payload-examples/api.github.com/registry_package/published.docker.payload.json @@ -335,7 +335,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/release/created.payload.json b/payload-examples/api.github.com/release/created.payload.json index 8f5a91cd9..9c6dde518 100644 --- a/payload-examples/api.github.com/release/created.payload.json +++ b/payload-examples/api.github.com/release/created.payload.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/created.with-discussion-url.payload.json b/payload-examples/api.github.com/release/created.with-discussion-url.payload.json index 17a8c09cf..0535431db 100644 --- a/payload-examples/api.github.com/release/created.with-discussion-url.payload.json +++ b/payload-examples/api.github.com/release/created.with-discussion-url.payload.json @@ -136,7 +136,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/created.with-installation.payload.json b/payload-examples/api.github.com/release/created.with-installation.payload.json index 21169c23e..e9a1b5c6e 100644 --- a/payload-examples/api.github.com/release/created.with-installation.payload.json +++ b/payload-examples/api.github.com/release/created.with-installation.payload.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/deleted.payload.json b/payload-examples/api.github.com/release/deleted.payload.json index 07159d5fd..d80c44286 100644 --- a/payload-examples/api.github.com/release/deleted.payload.json +++ b/payload-examples/api.github.com/release/deleted.payload.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/deleted.with-reactions.payload.json b/payload-examples/api.github.com/release/deleted.with-reactions.payload.json index 75b498bb2..a7fd991b5 100644 --- a/payload-examples/api.github.com/release/deleted.with-reactions.payload.json +++ b/payload-examples/api.github.com/release/deleted.with-reactions.payload.json @@ -147,7 +147,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/edited.payload.json b/payload-examples/api.github.com/release/edited.payload.json index 9e5250814..e20a08138 100644 --- a/payload-examples/api.github.com/release/edited.payload.json +++ b/payload-examples/api.github.com/release/edited.payload.json @@ -136,7 +136,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/edited.with-reactions.payload.json b/payload-examples/api.github.com/release/edited.with-reactions.payload.json index 9d3220c58..ad2c0e7b0 100644 --- a/payload-examples/api.github.com/release/edited.with-reactions.payload.json +++ b/payload-examples/api.github.com/release/edited.with-reactions.payload.json @@ -148,7 +148,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/prereleased.payload.json b/payload-examples/api.github.com/release/prereleased.payload.json index e5dfb062e..197032882 100644 --- a/payload-examples/api.github.com/release/prereleased.payload.json +++ b/payload-examples/api.github.com/release/prereleased.payload.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/prereleased.with-disussion-url.payload.json b/payload-examples/api.github.com/release/prereleased.with-disussion-url.payload.json index fe382982c..596bf6eb4 100644 --- a/payload-examples/api.github.com/release/prereleased.with-disussion-url.payload.json +++ b/payload-examples/api.github.com/release/prereleased.with-disussion-url.payload.json @@ -136,7 +136,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/published.payload.json b/payload-examples/api.github.com/release/published.payload.json index 4ff6e0c3c..305abd390 100644 --- a/payload-examples/api.github.com/release/published.payload.json +++ b/payload-examples/api.github.com/release/published.payload.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/published.with-discussion-url.payload.json b/payload-examples/api.github.com/release/published.with-discussion-url.payload.json index 90e7422c6..2574148dc 100644 --- a/payload-examples/api.github.com/release/published.with-discussion-url.payload.json +++ b/payload-examples/api.github.com/release/published.with-discussion-url.payload.json @@ -136,7 +136,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/released.json b/payload-examples/api.github.com/release/released.json index ccd78e781..6cfb5a552 100644 --- a/payload-examples/api.github.com/release/released.json +++ b/payload-examples/api.github.com/release/released.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/created.payload.json b/payload-examples/api.github.com/repository/created.payload.json index e17308a5a..32fa16c15 100644 --- a/payload-examples/api.github.com/repository/created.payload.json +++ b/payload-examples/api.github.com/repository/created.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/created.with-installation.payload.json b/payload-examples/api.github.com/repository/created.with-installation.payload.json index 3569b8ed9..8a927e796 100644 --- a/payload-examples/api.github.com/repository/created.with-installation.payload.json +++ b/payload-examples/api.github.com/repository/created.with-installation.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/edited.payload.json b/payload-examples/api.github.com/repository/edited.payload.json index 30ab01955..706fdab5f 100644 --- a/payload-examples/api.github.com/repository/edited.payload.json +++ b/payload-examples/api.github.com/repository/edited.payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/edited.with-default_branch-edit.payload.json b/payload-examples/api.github.com/repository/edited.with-default_branch-edit.payload.json index 82d2fc67d..dbfef16b0 100644 --- a/payload-examples/api.github.com/repository/edited.with-default_branch-edit.payload.json +++ b/payload-examples/api.github.com/repository/edited.with-default_branch-edit.payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/privatized.payload.json b/payload-examples/api.github.com/repository/privatized.payload.json index 078406341..21d92c88f 100644 --- a/payload-examples/api.github.com/repository/privatized.payload.json +++ b/payload-examples/api.github.com/repository/privatized.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/privatized.with-organization.payload.json b/payload-examples/api.github.com/repository/privatized.with-organization.payload.json index 1b855df48..9b647f97c 100644 --- a/payload-examples/api.github.com/repository/privatized.with-organization.payload.json +++ b/payload-examples/api.github.com/repository/privatized.with-organization.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/publicized.payload.json b/payload-examples/api.github.com/repository/publicized.payload.json index 3817716a7..4730ce360 100644 --- a/payload-examples/api.github.com/repository/publicized.payload.json +++ b/payload-examples/api.github.com/repository/publicized.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/publicized.with-organization.payload.json b/payload-examples/api.github.com/repository/publicized.with-organization.payload.json index 293e92822..0c0053f4a 100644 --- a/payload-examples/api.github.com/repository/publicized.with-organization.payload.json +++ b/payload-examples/api.github.com/repository/publicized.with-organization.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/renamed.payload.json b/payload-examples/api.github.com/repository/renamed.payload.json index e7265c3e6..ee6685682 100644 --- a/payload-examples/api.github.com/repository/renamed.payload.json +++ b/payload-examples/api.github.com/repository/renamed.payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/transferred.payload.json b/payload-examples/api.github.com/repository/transferred.payload.json index 5d8f02616..080e46bf1 100644 --- a/payload-examples/api.github.com/repository/transferred.payload.json +++ b/payload-examples/api.github.com/repository/transferred.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/transferred.with-installation.payload.json b/payload-examples/api.github.com/repository/transferred.with-installation.payload.json index e41e7d452..9271f9245 100644 --- a/payload-examples/api.github.com/repository/transferred.with-installation.payload.json +++ b/payload-examples/api.github.com/repository/transferred.with-installation.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/transferred.with-organization.payload.json b/payload-examples/api.github.com/repository/transferred.with-organization.payload.json index 6cd954790..2b2f0631c 100644 --- a/payload-examples/api.github.com/repository/transferred.with-organization.payload.json +++ b/payload-examples/api.github.com/repository/transferred.with-organization.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository_dispatch/payload.json b/payload-examples/api.github.com/repository_dispatch/payload.json index 763d0a517..e53acfae8 100644 --- a/payload-examples/api.github.com/repository_dispatch/payload.json +++ b/payload-examples/api.github.com/repository_dispatch/payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/repository_import/payload.json b/payload-examples/api.github.com/repository_import/payload.json index 1d66ed47c..68cd1c63d 100644 --- a/payload-examples/api.github.com/repository_import/payload.json +++ b/payload-examples/api.github.com/repository_import/payload.json @@ -95,7 +95,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository_vulnerability_alert/create.payload.json b/payload-examples/api.github.com/repository_vulnerability_alert/create.payload.json index 2c4169c77..0d43d7efe 100644 --- a/payload-examples/api.github.com/repository_vulnerability_alert/create.payload.json +++ b/payload-examples/api.github.com/repository_vulnerability_alert/create.payload.json @@ -110,7 +110,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "github", diff --git a/payload-examples/api.github.com/repository_vulnerability_alert/create.with-organization.payload.json b/payload-examples/api.github.com/repository_vulnerability_alert/create.with-organization.payload.json index 09432872b..fcac5e05a 100644 --- a/payload-examples/api.github.com/repository_vulnerability_alert/create.with-organization.payload.json +++ b/payload-examples/api.github.com/repository_vulnerability_alert/create.with-organization.payload.json @@ -110,7 +110,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository_vulnerability_alert/dismiss.payload.json b/payload-examples/api.github.com/repository_vulnerability_alert/dismiss.payload.json index 5f21bab5d..2fb8b2018 100644 --- a/payload-examples/api.github.com/repository_vulnerability_alert/dismiss.payload.json +++ b/payload-examples/api.github.com/repository_vulnerability_alert/dismiss.payload.json @@ -132,7 +132,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "github", diff --git a/payload-examples/api.github.com/secret_scanning_alert/reopened.payload.json b/payload-examples/api.github.com/secret_scanning_alert/reopened.payload.json index cab902467..de47ee2dd 100644 --- a/payload-examples/api.github.com/secret_scanning_alert/reopened.payload.json +++ b/payload-examples/api.github.com/secret_scanning_alert/reopened.payload.json @@ -103,7 +103,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/star/created.payload.json b/payload-examples/api.github.com/star/created.payload.json index 85b55d8eb..039d8d8ec 100644 --- a/payload-examples/api.github.com/star/created.payload.json +++ b/payload-examples/api.github.com/star/created.payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/star/deleted.payload.json b/payload-examples/api.github.com/star/deleted.payload.json index 653c3fdd5..7d94a2224 100644 --- a/payload-examples/api.github.com/star/deleted.payload.json +++ b/payload-examples/api.github.com/star/deleted.payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/status/payload.json b/payload-examples/api.github.com/status/payload.json index 29391d133..507948434 100644 --- a/payload-examples/api.github.com/status/payload.json +++ b/payload-examples/api.github.com/status/payload.json @@ -203,7 +203,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/status/with-author-committer-null.payload.json b/payload-examples/api.github.com/status/with-author-committer-null.payload.json index 87369760f..ad6de0068 100644 --- a/payload-examples/api.github.com/status/with-author-committer-null.payload.json +++ b/payload-examples/api.github.com/status/with-author-committer-null.payload.json @@ -162,7 +162,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/status/with-installation.payload.json b/payload-examples/api.github.com/status/with-installation.payload.json index 00e3b996b..eb8879af9 100644 --- a/payload-examples/api.github.com/status/with-installation.payload.json +++ b/payload-examples/api.github.com/status/with-installation.payload.json @@ -203,7 +203,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/team/added_to_repository.payload.json b/payload-examples/api.github.com/team/added_to_repository.payload.json index 0df841aed..78b352554 100644 --- a/payload-examples/api.github.com/team/added_to_repository.payload.json +++ b/payload-examples/api.github.com/team/added_to_repository.payload.json @@ -111,7 +111,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/team/removed_from_repository.payload.json b/payload-examples/api.github.com/team/removed_from_repository.payload.json index 7f978ca02..02a033801 100644 --- a/payload-examples/api.github.com/team/removed_from_repository.payload.json +++ b/payload-examples/api.github.com/team/removed_from_repository.payload.json @@ -117,7 +117,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/team_add/payload.json b/payload-examples/api.github.com/team_add/payload.json index bbe7ae360..72cef41f9 100644 --- a/payload-examples/api.github.com/team_add/payload.json +++ b/payload-examples/api.github.com/team_add/payload.json @@ -108,7 +108,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/team_add/with-installation.payload.json b/payload-examples/api.github.com/team_add/with-installation.payload.json index c7cee283e..3bc00a06e 100644 --- a/payload-examples/api.github.com/team_add/with-installation.payload.json +++ b/payload-examples/api.github.com/team_add/with-installation.payload.json @@ -108,7 +108,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/watch/started.payload.json b/payload-examples/api.github.com/watch/started.payload.json index d8ed1299a..51f79da9b 100644 --- a/payload-examples/api.github.com/watch/started.payload.json +++ b/payload-examples/api.github.com/watch/started.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/watch/started.with-installation.payload.json b/payload-examples/api.github.com/watch/started.with-installation.payload.json index 83f755b50..8cef75f68 100644 --- a/payload-examples/api.github.com/watch/started.with-installation.payload.json +++ b/payload-examples/api.github.com/watch/started.with-installation.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/workflow_dispatch/payload.json b/payload-examples/api.github.com/workflow_dispatch/payload.json index d5ff14754..6268e45d2 100644 --- a/payload-examples/api.github.com/workflow_dispatch/payload.json +++ b/payload-examples/api.github.com/workflow_dispatch/payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/workflow_job/completed.failure.with-organization.payload.json b/payload-examples/api.github.com/workflow_job/completed.failure.with-organization.payload.json index c42acd75d..5aaf9c8d3 100644 --- a/payload-examples/api.github.com/workflow_job/completed.failure.with-organization.payload.json +++ b/payload-examples/api.github.com/workflow_job/completed.failure.with-organization.payload.json @@ -218,7 +218,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/workflow_job/completed.success.with-organization.payload.json b/payload-examples/api.github.com/workflow_job/completed.success.with-organization.payload.json index 4db5310d7..ba243e216 100644 --- a/payload-examples/api.github.com/workflow_job/completed.success.with-organization.payload.json +++ b/payload-examples/api.github.com/workflow_job/completed.success.with-organization.payload.json @@ -186,7 +186,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/workflow_job/in_progress.payload.json b/payload-examples/api.github.com/workflow_job/in_progress.payload.json index 94433a14a..e77c9bad2 100644 --- a/payload-examples/api.github.com/workflow_job/in_progress.payload.json +++ b/payload-examples/api.github.com/workflow_job/in_progress.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/workflow_job/in_progress.with-queued-steps.payload.json b/payload-examples/api.github.com/workflow_job/in_progress.with-queued-steps.payload.json index b47ee4ad0..43ea4ef8d 100644 --- a/payload-examples/api.github.com/workflow_job/in_progress.with-queued-steps.payload.json +++ b/payload-examples/api.github.com/workflow_job/in_progress.with-queued-steps.payload.json @@ -202,7 +202,8 @@ "forks": 0, "open_issues": 8, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "renovate[bot]", diff --git a/payload-examples/api.github.com/workflow_job/queued.payload.json b/payload-examples/api.github.com/workflow_job/queued.payload.json index cb97705c5..788963bfe 100644 --- a/payload-examples/api.github.com/workflow_job/queued.payload.json +++ b/payload-examples/api.github.com/workflow_job/queued.payload.json @@ -121,7 +121,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/workflow_job/queued.with-deployment.payload.json b/payload-examples/api.github.com/workflow_job/queued.with-deployment.payload.json index bc5ba4714..882e54c60 100644 --- a/payload-examples/api.github.com/workflow_job/queued.with-deployment.payload.json +++ b/payload-examples/api.github.com/workflow_job/queued.with-deployment.payload.json @@ -252,7 +252,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "lineville", diff --git a/payload-examples/api.github.com/workflow_job/waiting.payload.json b/payload-examples/api.github.com/workflow_job/waiting.payload.json index 07572419a..b439934e5 100644 --- a/payload-examples/api.github.com/workflow_job/waiting.payload.json +++ b/payload-examples/api.github.com/workflow_job/waiting.payload.json @@ -129,7 +129,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "lineville", diff --git a/payload-examples/api.github.com/workflow_run/completed.payload.json b/payload-examples/api.github.com/workflow_run/completed.payload.json index 499bcee65..d6f1dc9b7 100644 --- a/payload-examples/api.github.com/workflow_run/completed.payload.json +++ b/payload-examples/api.github.com/workflow_run/completed.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", diff --git a/payload-examples/api.github.com/workflow_run/completed.with-pull-requests.payload.json b/payload-examples/api.github.com/workflow_run/completed.with-pull-requests.payload.json index 41daa5f7b..6c0e4abae 100644 --- a/payload-examples/api.github.com/workflow_run/completed.with-pull-requests.payload.json +++ b/payload-examples/api.github.com/workflow_run/completed.with-pull-requests.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", diff --git a/payload-examples/api.github.com/workflow_run/requested.payload.json b/payload-examples/api.github.com/workflow_run/requested.payload.json index dc0ddf25b..5336d1bad 100644 --- a/payload-examples/api.github.com/workflow_run/requested.payload.json +++ b/payload-examples/api.github.com/workflow_run/requested.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", diff --git a/payload-examples/api.github.com/workflow_run/requested.with-conclusion.payload.json b/payload-examples/api.github.com/workflow_run/requested.with-conclusion.payload.json index d6e017213..9fe7edc3b 100644 --- a/payload-examples/api.github.com/workflow_run/requested.with-conclusion.payload.json +++ b/payload-examples/api.github.com/workflow_run/requested.with-conclusion.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", From 103da3dd2bce816a83ebac1a416406bc21db2162 Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Sun, 3 Mar 2024 20:23:51 -0500 Subject: [PATCH 5/8] build: update types --- payload-types/schema.d.ts | 223 ++++++++++++++++++++++++++++---------- 1 file changed, 168 insertions(+), 55 deletions(-) diff --git a/payload-types/schema.d.ts b/payload-types/schema.d.ts index ec585698a..9cf4198df 100644 --- a/payload-types/schema.d.ts +++ b/payload-types/schema.d.ts @@ -6,12 +6,15 @@ */ export type Schema = + | BranchProtectionConfigurationEvent | BranchProtectionRuleEvent | CheckRunEvent | CheckSuiteEvent | CodeScanningAlertEvent | CommitCommentEvent | CreateEvent + | CustomPropertyEvent + | CustomPropertyValuesEvent | DeleteEvent | DependabotAlertEvent | DeployKeyEvent @@ -69,6 +72,9 @@ export type Schema = | WorkflowDispatchEvent | WorkflowJobEvent | WorkflowRunEvent; +export type BranchProtectionConfigurationEvent = + | BranchProtectionConfigurationDisabledEvent + | BranchProtectionConfigurationEnabledEvent; export type BranchProtectionRuleEvent = | BranchProtectionRuleCreatedEvent | BranchProtectionRuleDeletedEvent @@ -109,6 +115,10 @@ export type AuthorAssociation = | "MEMBER" | "NONE" | "OWNER"; +export type CustomPropertyEvent = + | CustomPropertyCreatedEvent + | CustomPropertyDeletedEvent; +export type CustomPropertyValuesEvent = CustomPropertyValuesUpdatedEvent; export type DependabotAlertEvent = | DependabotAlertCreatedEvent | DependabotAlertDismissedEvent @@ -467,47 +477,37 @@ export type WorkflowRunEvent = | WorkflowRunInProgressEvent | WorkflowRunRequestedEvent; -/** - * Activity related to a branch protection rule. For more information, see "[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules)." - */ -export interface BranchProtectionRuleCreatedEvent { - action: "created"; - rule: BranchProtectionRule; - repository: Repository; - sender: User; +export interface BranchProtectionConfigurationDisabledEvent { + action: "disabled"; installation?: InstallationLite; organization?: Organization; + repository: Repository; + sender: User; } /** - * The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) applied to branches that match the name. Binary settings are boolean. Multi-level configurations are one of `off`, `non_admins`, or `everyone`. Actor and build lists are arrays of strings. + * Installation */ -export interface BranchProtectionRule { +export interface InstallationLite { + /** + * The ID of the installation. + */ id: number; - repository_id: number; - name: string; - created_at: string; - updated_at: string; - pull_request_reviews_enforcement_level: BranchProtectionRuleEnforcementLevel; - required_approving_review_count: BranchProtectionRuleNumber; - dismiss_stale_reviews_on_push: BranchProtectionRuleBoolean; - require_code_owner_review: BranchProtectionRuleBoolean; - authorized_dismissal_actors_only: BranchProtectionRuleBoolean; - ignore_approvals_from_contributors: BranchProtectionRuleBoolean; - require_last_push_approval?: BranchProtectionRuleBoolean; - required_status_checks: BranchProtectionRuleArray; - required_status_checks_enforcement_level: BranchProtectionRuleEnforcementLevel; - strict_required_status_checks_policy: BranchProtectionRuleBoolean; - signature_requirement_enforcement_level: BranchProtectionRuleEnforcementLevel; - linear_history_requirement_enforcement_level: BranchProtectionRuleEnforcementLevel; - admin_enforced: BranchProtectionRuleBoolean; - create_protected?: BranchProtectionRuleBoolean; - allow_force_pushes_enforcement_level: BranchProtectionRuleEnforcementLevel; - allow_deletions_enforcement_level: BranchProtectionRuleEnforcementLevel; - merge_queue_enforcement_level: BranchProtectionRuleEnforcementLevel; - required_deployments_enforcement_level: BranchProtectionRuleEnforcementLevel; - required_conversation_resolution_level: BranchProtectionRuleEnforcementLevel; - authorized_actors_only: BranchProtectionRuleBoolean; - authorized_actor_names: BranchProtectionRuleArray; + node_id: string; +} +export interface Organization { + login: string; + id: number; + node_id: string; + url: string; + html_url?: string; + repos_url: string; + events_url: string; + hooks_url: string; + issues_url: string; + members_url: string; + public_members_url: string; + avatar_url: string; + description: string | null; } /** * A git repository @@ -791,6 +791,9 @@ export interface Repository { }; public?: boolean; organization?: string; + custom_properties?: { + [k: string]: null | string | string[]; + }; } export interface User { login: string; @@ -821,30 +824,54 @@ export interface License { url: string | null; node_id: string; } +export interface BranchProtectionConfigurationEnabledEvent { + action: "enabled"; + installation?: InstallationLite; + organization?: Organization; + repository: Repository; + sender: User; +} /** - * Installation + * Activity related to a branch protection rule. For more information, see "[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules)." */ -export interface InstallationLite { - /** - * The ID of the installation. - */ - id: number; - node_id: string; +export interface BranchProtectionRuleCreatedEvent { + action: "created"; + rule: BranchProtectionRule; + repository: Repository; + sender: User; + installation?: InstallationLite; + organization?: Organization; } -export interface Organization { - login: string; +/** + * The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) applied to branches that match the name. Binary settings are boolean. Multi-level configurations are one of `off`, `non_admins`, or `everyone`. Actor and build lists are arrays of strings. + */ +export interface BranchProtectionRule { id: number; - node_id: string; - url: string; - html_url?: string; - repos_url: string; - events_url: string; - hooks_url: string; - issues_url: string; - members_url: string; - public_members_url: string; - avatar_url: string; - description: string | null; + repository_id: number; + name: string; + created_at: string; + updated_at: string; + pull_request_reviews_enforcement_level: BranchProtectionRuleEnforcementLevel; + required_approving_review_count: BranchProtectionRuleNumber; + dismiss_stale_reviews_on_push: BranchProtectionRuleBoolean; + require_code_owner_review: BranchProtectionRuleBoolean; + authorized_dismissal_actors_only: BranchProtectionRuleBoolean; + ignore_approvals_from_contributors: BranchProtectionRuleBoolean; + require_last_push_approval?: BranchProtectionRuleBoolean; + required_status_checks: BranchProtectionRuleArray; + required_status_checks_enforcement_level: BranchProtectionRuleEnforcementLevel; + strict_required_status_checks_policy: BranchProtectionRuleBoolean; + signature_requirement_enforcement_level: BranchProtectionRuleEnforcementLevel; + linear_history_requirement_enforcement_level: BranchProtectionRuleEnforcementLevel; + admin_enforced: BranchProtectionRuleBoolean; + create_protected?: BranchProtectionRuleBoolean; + allow_force_pushes_enforcement_level: BranchProtectionRuleEnforcementLevel; + allow_deletions_enforcement_level: BranchProtectionRuleEnforcementLevel; + merge_queue_enforcement_level: BranchProtectionRuleEnforcementLevel; + required_deployments_enforcement_level: BranchProtectionRuleEnforcementLevel; + required_conversation_resolution_level: BranchProtectionRuleEnforcementLevel; + authorized_actors_only: BranchProtectionRuleBoolean; + authorized_actor_names: BranchProtectionRuleArray; } /** * Activity related to a branch protection rule. For more information, see "[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules)." @@ -2334,6 +2361,89 @@ export interface CreateEvent { installation?: InstallationLite; organization?: Organization; } +export interface CustomPropertyCreatedEvent { + action: "created"; + definition: OrganizationCustomProperty; + installation?: InstallationLite; + organization: Organization; + sender?: User; +} +/** + * Custom property defined on an organization + */ +export interface OrganizationCustomProperty { + /** + * The name of the property + */ + property_name: string; + /** + * The type of the value for the property + */ + value_type: "string" | "single_select"; + /** + * Whether the property is required. + */ + required?: boolean; + /** + * Default value of the property + */ + default_value?: string | null; + /** + * Short description of the property + */ + description?: string | null; + /** + * An ordered list of the allowed values of the property. + * The property can have up to 200 allowed values. + * + * @maxItems 200 + */ + allowed_values?: string[] | null; + /** + * Who can edit the values of the property + */ + values_editable_by?: "org_actors" | "org_and_repo_actors" | null; +} +export interface CustomPropertyDeletedEvent { + action: "deleted"; + definition: { + /** + * The name of the property that was deleted. + */ + property_name: string; + }; + installation?: InstallationLite; + organization: Organization; + sender?: User; +} +export interface CustomPropertyValuesUpdatedEvent { + action: "updated"; + installation?: InstallationLite; + repository: Repository; + organization: Organization; + sender: User; + /** + * The new custom property values for the repository. + */ + new_property_values: CustomPropertyValue[]; + /** + * The old custom property values for the repository. + */ + old_property_values: CustomPropertyValue[]; +} +/** + * Custom property name and associated value + */ +export interface CustomPropertyValue { + /** + * The name of the property + */ + property_name: string; + /** + * The value assigned to the property + */ + value: string | string[] | null; +} /** * A Git branch or tag is deleted. */ @@ -8401,12 +8511,15 @@ export interface WorkflowRunRequestedEvent { } export interface EventPayloadMap { + branch_protection_configuration: BranchProtectionConfigurationEvent; branch_protection_rule: BranchProtectionRuleEvent; check_run: CheckRunEvent; check_suite: CheckSuiteEvent; code_scanning_alert: CodeScanningAlertEvent; commit_comment: CommitCommentEvent; create: CreateEvent; + custom_property: CustomPropertyEvent; + custom_property_values: CustomPropertyValuesEvent; delete: DeleteEvent; dependabot_alert: DependabotAlertEvent; deploy_key: DeployKeyEvent; From cc537079688c32fcb79cf42d7629ff86724bc579 Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Sun, 3 Mar 2024 20:52:29 -0500 Subject: [PATCH 6/8] fix: update examples --- .../discussion/transferred.payload.json | 3 +- .../api.github.com/fork/payload.json | 3 +- .../fork/with-installation.payload.json | 3 +- payload-examples/api.github.com/index.json | 960 +++--------------- .../issues/opened.with-transfer.payload.json | 3 +- .../issues/transferred.payload.json | 3 +- .../package/published.docker.payload.json | 3 +- .../pull_request/assigned.payload.json | 6 +- .../assigned.with-organization.payload.json | 6 +- .../pull_request/closed.payload.json | 6 +- .../closed.with-organization.payload.json | 6 +- .../converted_to_draft.payload.json | 6 +- ...ed_to_draft.with-installation.payload.json | 6 +- ...ed_to_draft.with-organization.payload.json | 6 +- .../pull_request/labeled.payload.json | 6 +- .../labeled.with-organization.payload.json | 6 +- .../pull_request/locked.payload.json | 6 +- .../locked.with-organization.payload.json | 6 +- .../pull_request/opened.payload.json | 6 +- .../pull_request/opened.with-null-body.json | 6 +- .../opened.with-organization.payload.json | 6 +- .../ready_for_review.payload.json | 6 +- ..._for_review.with-installation.payload.json | 6 +- ..._for_review.with-organization.payload.json | 6 +- .../pull_request/reopened.payload.json | 6 +- .../reopened.with-organization.payload.json | 6 +- .../review_request_removed.payload.json | 6 +- .../review_requested.payload.json | 6 +- .../pull_request/synchronize.payload.json | 6 +- .../pull_request/unassigned.payload.json | 6 +- .../unassigned.with-organization.payload.json | 6 +- .../pull_request/unlabeled.payload.json | 6 +- .../unlabeled.with-organization.payload.json | 6 +- .../pull_request/unlocked.payload.json | 6 +- .../unlocked.with-organization.payload.json | 6 +- .../dismissed.payload.json | 6 +- .../submitted.payload.json | 6 +- .../submitted.with-organization.payload.json | 6 +- .../created.payload.json | 6 +- .../created.with-organization.payload.json | 6 +- .../deleted.payload.json | 6 +- .../edited.payload.json | 6 +- .../resolved.payload.json | 6 +- .../unresolved.payload.json | 6 +- .../published.docker.payload.json | 3 +- 45 files changed, 329 insertions(+), 874 deletions(-) diff --git a/payload-examples/api.github.com/discussion/transferred.payload.json b/payload-examples/api.github.com/discussion/transferred.payload.json index 5da0acad7..3bba0ff71 100644 --- a/payload-examples/api.github.com/discussion/transferred.payload.json +++ b/payload-examples/api.github.com/discussion/transferred.payload.json @@ -197,7 +197,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "repository": { diff --git a/payload-examples/api.github.com/fork/payload.json b/payload-examples/api.github.com/fork/payload.json index 0caec792a..ba7b6c016 100644 --- a/payload-examples/api.github.com/fork/payload.json +++ b/payload-examples/api.github.com/fork/payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "repository": { "id": 186853002, diff --git a/payload-examples/api.github.com/fork/with-installation.payload.json b/payload-examples/api.github.com/fork/with-installation.payload.json index 312f989e1..e435acd87 100644 --- a/payload-examples/api.github.com/fork/with-installation.payload.json +++ b/payload-examples/api.github.com/fork/with-installation.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "repository": { "id": 186853002, diff --git a/payload-examples/api.github.com/index.json b/payload-examples/api.github.com/index.json index e53d5199f..86949ce54 100644 --- a/payload-examples/api.github.com/index.json +++ b/payload-examples/api.github.com/index.json @@ -1,4 +1,11 @@ [ + { + "name": "branch_protection_configuration", + "description": "", + "properties": {}, + "actions": [], + "examples": [] + }, { "name": "branch_protection_rule", "description": "Activity related to a branch protection rule. For more information, see \"[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules).\"", @@ -14192,7 +14199,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "repository": { @@ -16135,7 +16143,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "repository": { "id": 186853002, @@ -16355,7 +16364,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "repository": { "id": 186853002, @@ -20210,297 +20220,6 @@ "site_admin": false } }, - { - "action": "edited", - "changes": { - "body": { - "from": "Wonder if we could make a secondary rotation map to a keybind instead. Thus disabling right click rotation when it's used for panning.\r\n\r\nOr we swap right button with middle button in addition too to support users who have a middle button on the mouse." - } - }, - "issue": { - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469", - "repository_url": "https://api.github.com/repos/CorsixTH/CorsixTH", - "labels_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469/labels{/name}", - "comments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469/comments", - "events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469/events", - "html_url": "https://github.com/CorsixTH/CorsixTH/issues/2469", - "id": 2060772086, - "node_id": "I_kwDOALyme8561OL2", - "number": 2469, - "title": "[Bug] Right mouse panning can cause glitches with object placement", - "user": { - "login": "lewri", - "id": 20030128, - "node_id": "MDQ6VXNlcjIwMDMwMTI4", - "avatar_url": "https://avatars.githubusercontent.com/u/20030128?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/lewri", - "html_url": "https://github.com/lewri", - "followers_url": "https://api.github.com/users/lewri/followers", - "following_url": "https://api.github.com/users/lewri/following{/other_user}", - "gists_url": "https://api.github.com/users/lewri/gists{/gist_id}", - "starred_url": "https://api.github.com/users/lewri/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/lewri/subscriptions", - "organizations_url": "https://api.github.com/users/lewri/orgs", - "repos_url": "https://api.github.com/users/lewri/repos", - "events_url": "https://api.github.com/users/lewri/events{/privacy}", - "received_events_url": "https://api.github.com/users/lewri/received_events", - "type": "User", - "site_admin": false - }, - "labels": [ - { - "id": 57863423, - "node_id": "MDU6TGFiZWw1Nzg2MzQyMw==", - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels/P4%20Low", - "name": "P4 Low", - "color": "DCB103", - "default": false, - "description": "Priority" - }, - { - "id": 137785782, - "node_id": "MDU6TGFiZWwxMzc3ODU3ODI=", - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels/T:Regression", - "name": "T:Regression", - "color": "bfd4f2", - "default": false, - "description": "Type" - }, - { - "id": 160013792, - "node_id": "MDU6TGFiZWwxNjAwMTM3OTI=", - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels/bug", - "name": "bug", - "color": "aa161d", - "default": true, - "description": "issue type" - } - ], - "state": "open", - "locked": false, - "assignee": null, - "assignees": [], - "milestone": null, - "comments": 1, - "created_at": "2023-12-30T15:08:26Z", - "updated_at": "2024-02-03T09:22:47Z", - "closed_at": null, - "author_association": "MEMBER", - "active_lock_reason": null, - "body": "### Describe the issue\r\n\r\nFollowing on from #2375 -- we now need to address a small issue where enabling Right Mouse panning causes some little bugs on object placement:\r\n1. When panning, the object will jitter around a little.\r\n2. When you finish panning, the object will rotate 1 time onMouseUp.\r\n\r\nThe jitter I could live with for longer, the unintentional rotate is a little bit of a pain.\r\n\r\n### Steps to Reproduce\r\n\r\n1. Start a game on a CorsixTH build on or after #2375 \r\n2. Set mouse panning to right mouse\r\n3. Go into an object placement task and use panning to move around the view.\r\n\r\n\r\n### Expected Behaviour\r\n\r\nWe should avoid jittering of objects during a pan -- we also want to avoid unintentional rotation.\r\n\r\n### Save Game\r\n\r\nSave game attached to report: No\r\n\r\n### CorsixTH Version\r\n\r\nversion with 2375 implemented (based on 0.67/master)\r\n\r\n### Operating System\r\n\r\nWindows 10\r\n\r\n### Theme Hospital Version\r\n\r\nGOG.com\r\n\r\n### Gamelog.txt\r\n\r\n_No response_\r\n\r\n### Additional Information\r\n\r\n_No response_", - "reactions": { - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "timeline_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469/timeline", - "performed_via_github_app": null, - "state_reason": null - }, - "comment": { - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/comments/1925240135", - "html_url": "https://github.com/CorsixTH/CorsixTH/issues/2469#issuecomment-1925240135", - "issue_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/2469", - "id": 1925240135, - "node_id": "IC_kwDOALyme85ywNVH", - "user": { - "login": "lewri", - "id": 20030128, - "node_id": "MDQ6VXNlcjIwMDMwMTI4", - "avatar_url": "https://avatars.githubusercontent.com/u/20030128?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/lewri", - "html_url": "https://github.com/lewri", - "followers_url": "https://api.github.com/users/lewri/followers", - "following_url": "https://api.github.com/users/lewri/following{/other_user}", - "gists_url": "https://api.github.com/users/lewri/gists{/gist_id}", - "starred_url": "https://api.github.com/users/lewri/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/lewri/subscriptions", - "organizations_url": "https://api.github.com/users/lewri/orgs", - "repos_url": "https://api.github.com/users/lewri/repos", - "events_url": "https://api.github.com/users/lewri/events{/privacy}", - "received_events_url": "https://api.github.com/users/lewri/received_events", - "type": "User", - "site_admin": false - }, - "created_at": "2024-02-03T09:22:29Z", - "updated_at": "2024-02-03T09:22:47Z", - "author_association": "MEMBER", - "body": "Wonder if we could make a secondary rotation to a keybind instead. Thus disabling right click rotation when it's used for panning.\r\n\r\nOr we swap right button with middle button in addition too to support users who have a middle button on the mouse.", - "reactions": { - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/comments/1925240135/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "performed_via_github_app": null - }, - "repository": { - "id": 12363387, - "node_id": "MDEwOlJlcG9zaXRvcnkxMjM2MzM4Nw==", - "name": "CorsixTH", - "full_name": "CorsixTH/CorsixTH", - "private": false, - "owner": { - "login": "CorsixTH", - "id": 4948760, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", - "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/CorsixTH", - "html_url": "https://github.com/CorsixTH", - "followers_url": "https://api.github.com/users/CorsixTH/followers", - "following_url": "https://api.github.com/users/CorsixTH/following{/other_user}", - "gists_url": "https://api.github.com/users/CorsixTH/gists{/gist_id}", - "starred_url": "https://api.github.com/users/CorsixTH/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/CorsixTH/subscriptions", - "organizations_url": "https://api.github.com/users/CorsixTH/orgs", - "repos_url": "https://api.github.com/users/CorsixTH/repos", - "events_url": "https://api.github.com/users/CorsixTH/events{/privacy}", - "received_events_url": "https://api.github.com/users/CorsixTH/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/CorsixTH/CorsixTH", - "description": "Open source clone of Theme Hospital", - "fork": false, - "url": "https://api.github.com/repos/CorsixTH/CorsixTH", - "forks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/forks", - "keys_url": "https://api.github.com/repos/CorsixTH/CorsixTH/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/CorsixTH/CorsixTH/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/CorsixTH/CorsixTH/teams", - "hooks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/hooks", - "issue_events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/events{/number}", - "events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/events", - "assignees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/assignees{/user}", - "branches_url": "https://api.github.com/repos/CorsixTH/CorsixTH/branches{/branch}", - "tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/tags", - "blobs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/CorsixTH/CorsixTH/statuses/{sha}", - "languages_url": "https://api.github.com/repos/CorsixTH/CorsixTH/languages", - "stargazers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/stargazers", - "contributors_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contributors", - "subscribers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscribers", - "subscription_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscription", - "commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contents/{+path}", - "compare_url": "https://api.github.com/repos/CorsixTH/CorsixTH/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/CorsixTH/CorsixTH/merges", - "archive_url": "https://api.github.com/repos/CorsixTH/CorsixTH/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/CorsixTH/CorsixTH/downloads", - "issues_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues{/number}", - "pulls_url": "https://api.github.com/repos/CorsixTH/CorsixTH/pulls{/number}", - "milestones_url": "https://api.github.com/repos/CorsixTH/CorsixTH/milestones{/number}", - "notifications_url": "https://api.github.com/repos/CorsixTH/CorsixTH/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels{/name}", - "releases_url": "https://api.github.com/repos/CorsixTH/CorsixTH/releases{/id}", - "deployments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/deployments", - "created_at": "2013-08-25T18:16:56Z", - "updated_at": "2024-01-30T06:47:16Z", - "pushed_at": "2024-02-02T18:19:55Z", - "git_url": "git://github.com/CorsixTH/CorsixTH.git", - "ssh_url": "git@github.com:CorsixTH/CorsixTH.git", - "clone_url": "https://github.com/CorsixTH/CorsixTH.git", - "svn_url": "https://github.com/CorsixTH/CorsixTH", - "homepage": null, - "size": 31482, - "stargazers_count": 2869, - "watchers_count": 2869, - "language": "Lua", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": true, - "has_discussions": true, - "forks_count": 300, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 256, - "license": { - "key": "other", - "name": "Other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "allow_forking": true, - "is_template": false, - "web_commit_signoff_required": false, - "topics": [ - "game", - "opensource", - "remake", - "strategy-game", - "theme-hospital" - ], - "visibility": "public", - "forks": 300, - "open_issues": 256, - "watchers": 2869, - "default_branch": "master", - "custom_properties": {} - }, - "organization": { - "login": "CorsixTH", - "id": 4948760, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", - "url": "https://api.github.com/orgs/CorsixTH", - "repos_url": "https://api.github.com/orgs/CorsixTH/repos", - "events_url": "https://api.github.com/orgs/CorsixTH/events", - "hooks_url": "https://api.github.com/orgs/CorsixTH/hooks", - "issues_url": "https://api.github.com/orgs/CorsixTH/issues", - "members_url": "https://api.github.com/orgs/CorsixTH/members{/member}", - "public_members_url": "https://api.github.com/orgs/CorsixTH/public_members{/member}", - "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", - "description": "" - }, - "sender": { - "login": "lewri", - "id": 20030128, - "node_id": "MDQ6VXNlcjIwMDMwMTI4", - "avatar_url": "https://avatars.githubusercontent.com/u/20030128?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/lewri", - "html_url": "https://github.com/lewri", - "followers_url": "https://api.github.com/users/lewri/followers", - "following_url": "https://api.github.com/users/lewri/following{/other_user}", - "gists_url": "https://api.github.com/users/lewri/gists{/gist_id}", - "starred_url": "https://api.github.com/users/lewri/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/lewri/subscriptions", - "organizations_url": "https://api.github.com/users/lewri/orgs", - "repos_url": "https://api.github.com/users/lewri/repos", - "events_url": "https://api.github.com/users/lewri/events{/privacy}", - "received_events_url": "https://api.github.com/users/lewri/received_events", - "type": "User", - "site_admin": false - }, - "installation": { - "id": 325639, - "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMzI1NjM5" - } - }, { "action": "edited", "changes": { @@ -22334,239 +22053,6 @@ "site_admin": false } }, - { - "action": "closed", - "issue": { - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915", - "repository_url": "https://api.github.com/repos/CorsixTH/CorsixTH", - "labels_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915/labels{/name}", - "comments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915/comments", - "events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915/events", - "html_url": "https://github.com/CorsixTH/CorsixTH/issues/1915", - "id": 907454938, - "node_id": "MDU6SXNzdWU5MDc0NTQ5Mzg=", - "number": 1915, - "title": "Hint to people that there are other languages available, after a font selection", - "user": { - "login": "kparal", - "id": 755451, - "node_id": "MDQ6VXNlcjc1NTQ1MQ==", - "avatar_url": "https://avatars.githubusercontent.com/u/755451?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/kparal", - "html_url": "https://github.com/kparal", - "followers_url": "https://api.github.com/users/kparal/followers", - "following_url": "https://api.github.com/users/kparal/following{/other_user}", - "gists_url": "https://api.github.com/users/kparal/gists{/gist_id}", - "starred_url": "https://api.github.com/users/kparal/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/kparal/subscriptions", - "organizations_url": "https://api.github.com/users/kparal/orgs", - "repos_url": "https://api.github.com/users/kparal/repos", - "events_url": "https://api.github.com/users/kparal/events{/privacy}", - "received_events_url": "https://api.github.com/users/kparal/received_events", - "type": "User", - "site_admin": false - }, - "labels": [ - { - "id": 57857876, - "node_id": "MDU6TGFiZWw1Nzg1Nzg3Ng==", - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels/enhancement", - "name": "enhancement", - "color": "7fe8b2", - "default": true, - "description": "issue type" - }, - { - "id": 57858322, - "node_id": "MDU6TGFiZWw1Nzg1ODMyMg==", - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels/S:Accepted", - "name": "S:Accepted", - "color": "006B75", - "default": false, - "description": "State - Someone is interested in working on this but can still be picked up by someone else" - } - ], - "state": "closed", - "locked": false, - "assignee": null, - "assignees": [], - "milestone": null, - "comments": 2, - "created_at": "2021-05-31T13:05:56Z", - "updated_at": "2024-02-02T18:31:52Z", - "closed_at": "2024-02-02T18:31:52Z", - "author_association": "NONE", - "active_lock_reason": null, - "body": "**What feature or enhancement would you like to add?**\r\nCurrently languages not supported by the default font are way too hidden for most people (who don't read corsixth wiki etc). There's nothing in the GUI telling you there are some languages hidden:\r\n![font selection](https://user-images.githubusercontent.com/755451/120196183-dba91c80-c21f-11eb-98ff-b97a2582f762.png)\r\n\r\nI believe this could be easily improved. Ideas:\r\n* Add a note into the tooltips (one above `Game Language`, the other shown in the screenshot). Something like:\r\n > Note: There are some languages hidden because the game font can't display them properly. Please select an appropriate font in the Folder menu and they will show up in this menu. Currently hidden languages are: Chinese, Czech, Russian, ...\r\n\r\n Create this tooltip dynamically to include the list of hidden languages, and display it only if there is no alternative font selected. If an alternate font is selected, replace it with this content:\r\n > Note: Some languages are displayed using an alternative font, because they are not supported by the default game font. If some characters are not displayed correctly, select a different font in the Folder menu.\r\n\r\n* Add some small info/warning icon right next to the `Game Language` text, to make sure user moves their cursor over the icon and displays the tooltip.\r\n\r\n* Alternatively, when the language drop-down is expanded, show a window with this hint next to the `Settings` window.\r\n\r\n* Alternatively, add a new item into the language drop-down to the very end, called e.g. `More languages`. When the user clicks on it, ignore the selection (keep the previous language), but display a window/tooltip with the hint.\r\n\r\n**What version of CorsixTH are you using?**\r\n0.65-beta2, Flathub\r\n", - "reactions": { - "url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915/reactions", - "total_count": 0, - "+1": 0, - "-1": 0, - "laugh": 0, - "hooray": 0, - "confused": 0, - "heart": 0, - "rocket": 0, - "eyes": 0 - }, - "timeline_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915/timeline", - "performed_via_github_app": null, - "state_reason": "completed" - }, - "repository": { - "id": 12363387, - "node_id": "MDEwOlJlcG9zaXRvcnkxMjM2MzM4Nw==", - "name": "CorsixTH", - "full_name": "CorsixTH/CorsixTH", - "private": false, - "owner": { - "login": "CorsixTH", - "id": 4948760, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", - "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/CorsixTH", - "html_url": "https://github.com/CorsixTH", - "followers_url": "https://api.github.com/users/CorsixTH/followers", - "following_url": "https://api.github.com/users/CorsixTH/following{/other_user}", - "gists_url": "https://api.github.com/users/CorsixTH/gists{/gist_id}", - "starred_url": "https://api.github.com/users/CorsixTH/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/CorsixTH/subscriptions", - "organizations_url": "https://api.github.com/users/CorsixTH/orgs", - "repos_url": "https://api.github.com/users/CorsixTH/repos", - "events_url": "https://api.github.com/users/CorsixTH/events{/privacy}", - "received_events_url": "https://api.github.com/users/CorsixTH/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/CorsixTH/CorsixTH", - "description": "Open source clone of Theme Hospital", - "fork": false, - "url": "https://api.github.com/repos/CorsixTH/CorsixTH", - "forks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/forks", - "keys_url": "https://api.github.com/repos/CorsixTH/CorsixTH/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/CorsixTH/CorsixTH/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/CorsixTH/CorsixTH/teams", - "hooks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/hooks", - "issue_events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/events{/number}", - "events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/events", - "assignees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/assignees{/user}", - "branches_url": "https://api.github.com/repos/CorsixTH/CorsixTH/branches{/branch}", - "tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/tags", - "blobs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/CorsixTH/CorsixTH/statuses/{sha}", - "languages_url": "https://api.github.com/repos/CorsixTH/CorsixTH/languages", - "stargazers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/stargazers", - "contributors_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contributors", - "subscribers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscribers", - "subscription_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscription", - "commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contents/{+path}", - "compare_url": "https://api.github.com/repos/CorsixTH/CorsixTH/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/CorsixTH/CorsixTH/merges", - "archive_url": "https://api.github.com/repos/CorsixTH/CorsixTH/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/CorsixTH/CorsixTH/downloads", - "issues_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues{/number}", - "pulls_url": "https://api.github.com/repos/CorsixTH/CorsixTH/pulls{/number}", - "milestones_url": "https://api.github.com/repos/CorsixTH/CorsixTH/milestones{/number}", - "notifications_url": "https://api.github.com/repos/CorsixTH/CorsixTH/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels{/name}", - "releases_url": "https://api.github.com/repos/CorsixTH/CorsixTH/releases{/id}", - "deployments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/deployments", - "created_at": "2013-08-25T18:16:56Z", - "updated_at": "2024-01-30T06:47:16Z", - "pushed_at": "2024-02-02T18:19:55Z", - "git_url": "git://github.com/CorsixTH/CorsixTH.git", - "ssh_url": "git@github.com:CorsixTH/CorsixTH.git", - "clone_url": "https://github.com/CorsixTH/CorsixTH.git", - "svn_url": "https://github.com/CorsixTH/CorsixTH", - "homepage": null, - "size": 31482, - "stargazers_count": 2869, - "watchers_count": 2869, - "language": "Lua", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": true, - "has_discussions": true, - "forks_count": 300, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 256, - "license": { - "key": "other", - "name": "Other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "allow_forking": true, - "is_template": false, - "web_commit_signoff_required": false, - "topics": [ - "game", - "opensource", - "remake", - "strategy-game", - "theme-hospital" - ], - "visibility": "public", - "forks": 300, - "open_issues": 256, - "watchers": 2869, - "default_branch": "master", - "custom_properties": {} - }, - "organization": { - "login": "CorsixTH", - "id": 4948760, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", - "url": "https://api.github.com/orgs/CorsixTH", - "repos_url": "https://api.github.com/orgs/CorsixTH/repos", - "events_url": "https://api.github.com/orgs/CorsixTH/events", - "hooks_url": "https://api.github.com/orgs/CorsixTH/hooks", - "issues_url": "https://api.github.com/orgs/CorsixTH/issues", - "members_url": "https://api.github.com/orgs/CorsixTH/members{/member}", - "public_members_url": "https://api.github.com/orgs/CorsixTH/public_members{/member}", - "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", - "description": "" - }, - "sender": { - "login": "tobylane", - "id": 552285, - "node_id": "MDQ6VXNlcjU1MjI4NQ==", - "avatar_url": "https://avatars.githubusercontent.com/u/552285?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/tobylane", - "html_url": "https://github.com/tobylane", - "followers_url": "https://api.github.com/users/tobylane/followers", - "following_url": "https://api.github.com/users/tobylane/following{/other_user}", - "gists_url": "https://api.github.com/users/tobylane/gists{/gist_id}", - "starred_url": "https://api.github.com/users/tobylane/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/tobylane/subscriptions", - "organizations_url": "https://api.github.com/users/tobylane/orgs", - "repos_url": "https://api.github.com/users/tobylane/repos", - "events_url": "https://api.github.com/users/tobylane/events{/privacy}", - "received_events_url": "https://api.github.com/users/tobylane/received_events", - "type": "User", - "site_admin": false - }, - "installation": { - "id": 325639, - "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMzI1NjM5" - } - }, { "action": "deleted", "issue": { @@ -26511,7 +25997,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "issue": { @@ -27554,7 +27041,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "repository": { @@ -33915,7 +33403,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "info": { @@ -37236,195 +36725,6 @@ "site_admin": false } }, - { - "action": "moved", - "changes": { "column_id": { "from": 19562548 } }, - "project_card": { - "url": "https://api.github.com/projects/columns/cards/91752560", - "project_url": "https://api.github.com/projects/14727333", - "column_url": "https://api.github.com/projects/columns/19562550", - "column_id": 19562550, - "id": 91752560, - "node_id": "PRC_lALOALyme84A4LilzgV4CHA", - "note": null, - "archived": false, - "creator": { - "login": "lewri", - "id": 20030128, - "node_id": "MDQ6VXNlcjIwMDMwMTI4", - "avatar_url": "https://avatars.githubusercontent.com/u/20030128?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/lewri", - "html_url": "https://github.com/lewri", - "followers_url": "https://api.github.com/users/lewri/followers", - "following_url": "https://api.github.com/users/lewri/following{/other_user}", - "gists_url": "https://api.github.com/users/lewri/gists{/gist_id}", - "starred_url": "https://api.github.com/users/lewri/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/lewri/subscriptions", - "organizations_url": "https://api.github.com/users/lewri/orgs", - "repos_url": "https://api.github.com/users/lewri/repos", - "events_url": "https://api.github.com/users/lewri/events{/privacy}", - "received_events_url": "https://api.github.com/users/lewri/received_events", - "type": "User", - "site_admin": false - }, - "created_at": "2024-02-03T09:18:44Z", - "updated_at": "2024-02-03T09:18:56Z", - "content_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/1915", - "after_id": null - }, - "repository": { - "id": 12363387, - "node_id": "MDEwOlJlcG9zaXRvcnkxMjM2MzM4Nw==", - "name": "CorsixTH", - "full_name": "CorsixTH/CorsixTH", - "private": false, - "owner": { - "login": "CorsixTH", - "id": 4948760, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", - "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/CorsixTH", - "html_url": "https://github.com/CorsixTH", - "followers_url": "https://api.github.com/users/CorsixTH/followers", - "following_url": "https://api.github.com/users/CorsixTH/following{/other_user}", - "gists_url": "https://api.github.com/users/CorsixTH/gists{/gist_id}", - "starred_url": "https://api.github.com/users/CorsixTH/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/CorsixTH/subscriptions", - "organizations_url": "https://api.github.com/users/CorsixTH/orgs", - "repos_url": "https://api.github.com/users/CorsixTH/repos", - "events_url": "https://api.github.com/users/CorsixTH/events{/privacy}", - "received_events_url": "https://api.github.com/users/CorsixTH/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/CorsixTH/CorsixTH", - "description": "Open source clone of Theme Hospital", - "fork": false, - "url": "https://api.github.com/repos/CorsixTH/CorsixTH", - "forks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/forks", - "keys_url": "https://api.github.com/repos/CorsixTH/CorsixTH/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/CorsixTH/CorsixTH/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/CorsixTH/CorsixTH/teams", - "hooks_url": "https://api.github.com/repos/CorsixTH/CorsixTH/hooks", - "issue_events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/events{/number}", - "events_url": "https://api.github.com/repos/CorsixTH/CorsixTH/events", - "assignees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/assignees{/user}", - "branches_url": "https://api.github.com/repos/CorsixTH/CorsixTH/branches{/branch}", - "tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/tags", - "blobs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/CorsixTH/CorsixTH/statuses/{sha}", - "languages_url": "https://api.github.com/repos/CorsixTH/CorsixTH/languages", - "stargazers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/stargazers", - "contributors_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contributors", - "subscribers_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscribers", - "subscription_url": "https://api.github.com/repos/CorsixTH/CorsixTH/subscription", - "commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/CorsixTH/CorsixTH/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/CorsixTH/CorsixTH/contents/{+path}", - "compare_url": "https://api.github.com/repos/CorsixTH/CorsixTH/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/CorsixTH/CorsixTH/merges", - "archive_url": "https://api.github.com/repos/CorsixTH/CorsixTH/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/CorsixTH/CorsixTH/downloads", - "issues_url": "https://api.github.com/repos/CorsixTH/CorsixTH/issues{/number}", - "pulls_url": "https://api.github.com/repos/CorsixTH/CorsixTH/pulls{/number}", - "milestones_url": "https://api.github.com/repos/CorsixTH/CorsixTH/milestones{/number}", - "notifications_url": "https://api.github.com/repos/CorsixTH/CorsixTH/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/CorsixTH/CorsixTH/labels{/name}", - "releases_url": "https://api.github.com/repos/CorsixTH/CorsixTH/releases{/id}", - "deployments_url": "https://api.github.com/repos/CorsixTH/CorsixTH/deployments", - "created_at": "2013-08-25T18:16:56Z", - "updated_at": "2024-01-30T06:47:16Z", - "pushed_at": "2024-02-02T18:19:55Z", - "git_url": "git://github.com/CorsixTH/CorsixTH.git", - "ssh_url": "git@github.com:CorsixTH/CorsixTH.git", - "clone_url": "https://github.com/CorsixTH/CorsixTH.git", - "svn_url": "https://github.com/CorsixTH/CorsixTH", - "homepage": null, - "size": 31482, - "stargazers_count": 2869, - "watchers_count": 2869, - "language": "Lua", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": true, - "has_discussions": true, - "forks_count": 300, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 256, - "license": { - "key": "other", - "name": "Other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "allow_forking": true, - "is_template": false, - "web_commit_signoff_required": false, - "topics": [ - "game", - "opensource", - "remake", - "strategy-game", - "theme-hospital" - ], - "visibility": "public", - "forks": 300, - "open_issues": 256, - "watchers": 2869, - "default_branch": "master", - "custom_properties": {} - }, - "organization": { - "login": "CorsixTH", - "id": 4948760, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ5NDg3NjA=", - "url": "https://api.github.com/orgs/CorsixTH", - "repos_url": "https://api.github.com/orgs/CorsixTH/repos", - "events_url": "https://api.github.com/orgs/CorsixTH/events", - "hooks_url": "https://api.github.com/orgs/CorsixTH/hooks", - "issues_url": "https://api.github.com/orgs/CorsixTH/issues", - "members_url": "https://api.github.com/orgs/CorsixTH/members{/member}", - "public_members_url": "https://api.github.com/orgs/CorsixTH/public_members{/member}", - "avatar_url": "https://avatars.githubusercontent.com/u/4948760?v=4", - "description": "" - }, - "sender": { - "login": "lewri", - "id": 20030128, - "node_id": "MDQ6VXNlcjIwMDMwMTI4", - "avatar_url": "https://avatars.githubusercontent.com/u/20030128?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/lewri", - "html_url": "https://github.com/lewri", - "followers_url": "https://api.github.com/users/lewri/followers", - "following_url": "https://api.github.com/users/lewri/following{/other_user}", - "gists_url": "https://api.github.com/users/lewri/gists{/gist_id}", - "starred_url": "https://api.github.com/users/lewri/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/lewri/subscriptions", - "organizations_url": "https://api.github.com/users/lewri/orgs", - "repos_url": "https://api.github.com/users/lewri/repos", - "events_url": "https://api.github.com/users/lewri/events{/privacy}", - "received_events_url": "https://api.github.com/users/lewri/received_events", - "type": "User", - "site_admin": false - }, - "installation": { - "id": 325639, - "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMzI1NjM5" - } - }, { "action": "moved", "changes": { "column_id": { "from": 9999467 } }, @@ -39823,7 +39123,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -39946,7 +39247,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -40360,7 +39662,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -40483,7 +39786,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -40911,7 +40215,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -41034,7 +40339,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -41428,7 +40734,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -41551,7 +40858,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -41959,7 +41267,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -42082,7 +41391,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -42472,7 +41782,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -42595,7 +41906,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -42989,7 +42301,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -43112,7 +42425,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -43571,7 +42885,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -43694,7 +43009,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -44152,7 +43468,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -44275,7 +43592,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -44692,7 +44010,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -44815,7 +44134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -45209,7 +44529,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -45332,7 +44653,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -45740,7 +45062,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -45863,7 +45186,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -46257,7 +45581,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -46380,7 +45705,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -46774,7 +46100,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -46897,7 +46224,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -47305,7 +46633,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -47428,7 +46757,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -47818,7 +47148,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -47941,7 +47272,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -48335,7 +47667,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -48458,7 +47791,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -48862,7 +48196,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -48985,7 +48320,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -49379,7 +48715,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -49502,7 +48839,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -49910,7 +49248,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -50033,7 +49372,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -50461,7 +49801,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -50584,7 +49925,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -51012,7 +50354,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -51135,7 +50478,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -51565,7 +50909,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -51688,7 +51033,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -52136,7 +51482,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -52259,7 +51606,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -52666,7 +52014,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -52789,7 +52138,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -53171,7 +52521,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -53294,7 +52645,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -53690,7 +53042,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -53813,7 +53166,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -54186,7 +53540,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -54309,7 +53664,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -55272,7 +54628,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -55395,7 +54752,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -55829,7 +55187,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -55952,7 +55311,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -56372,7 +55732,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -56495,7 +55856,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -57486,7 +56848,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -57609,7 +56972,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -58055,7 +57419,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -58178,7 +57543,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -58638,7 +58004,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -58761,7 +58128,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -59208,7 +58576,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -59331,7 +58700,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -60276,7 +59646,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -60399,7 +59770,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -60852,7 +60224,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -60975,7 +60348,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/issues/opened.with-transfer.payload.json b/payload-examples/api.github.com/issues/opened.with-transfer.payload.json index 8f6eb1b02..805829cde 100644 --- a/payload-examples/api.github.com/issues/opened.with-transfer.payload.json +++ b/payload-examples/api.github.com/issues/opened.with-transfer.payload.json @@ -156,7 +156,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "issue": { diff --git a/payload-examples/api.github.com/issues/transferred.payload.json b/payload-examples/api.github.com/issues/transferred.payload.json index cc233497c..9bcf04698 100644 --- a/payload-examples/api.github.com/issues/transferred.payload.json +++ b/payload-examples/api.github.com/issues/transferred.payload.json @@ -300,7 +300,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "repository": { diff --git a/payload-examples/api.github.com/package/published.docker.payload.json b/payload-examples/api.github.com/package/published.docker.payload.json index b1bda4f9b..ced1edc83 100644 --- a/payload-examples/api.github.com/package/published.docker.payload.json +++ b/payload-examples/api.github.com/package/published.docker.payload.json @@ -134,7 +134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "info": { diff --git a/payload-examples/api.github.com/pull_request/assigned.payload.json b/payload-examples/api.github.com/pull_request/assigned.payload.json index d347e3d99..263675a91 100644 --- a/payload-examples/api.github.com/pull_request/assigned.payload.json +++ b/payload-examples/api.github.com/pull_request/assigned.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json b/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json index 0f1660a79..847366189 100644 --- a/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/closed.payload.json b/payload-examples/api.github.com/pull_request/closed.payload.json index 820a63b06..09505f357 100644 --- a/payload-examples/api.github.com/pull_request/closed.payload.json +++ b/payload-examples/api.github.com/pull_request/closed.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json b/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json index 629667ea5..0419270bc 100644 --- a/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json b/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json index 3fa799f0d..80c4fe47f 100644 --- a/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json +++ b/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json b/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json index 4569874c1..981868a0b 100644 --- a/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json +++ b/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json b/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json index 962c60176..83355b1e6 100644 --- a/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/labeled.payload.json b/payload-examples/api.github.com/pull_request/labeled.payload.json index 1a9dce0c9..c1f5a4bb9 100644 --- a/payload-examples/api.github.com/pull_request/labeled.payload.json +++ b/payload-examples/api.github.com/pull_request/labeled.payload.json @@ -277,7 +277,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -400,7 +401,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json b/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json index 22078ce57..7ef7610e1 100644 --- a/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json @@ -277,7 +277,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -400,7 +401,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/locked.payload.json b/payload-examples/api.github.com/pull_request/locked.payload.json index bc34efaf1..d36c641eb 100644 --- a/payload-examples/api.github.com/pull_request/locked.payload.json +++ b/payload-examples/api.github.com/pull_request/locked.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json b/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json index 9047499e8..ba902826e 100644 --- a/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/opened.payload.json b/payload-examples/api.github.com/pull_request/opened.payload.json index 2b7f8568b..b034d6171 100644 --- a/payload-examples/api.github.com/pull_request/opened.payload.json +++ b/payload-examples/api.github.com/pull_request/opened.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/opened.with-null-body.json b/payload-examples/api.github.com/pull_request/opened.with-null-body.json index 87a9fd033..f202db0f7 100644 --- a/payload-examples/api.github.com/pull_request/opened.with-null-body.json +++ b/payload-examples/api.github.com/pull_request/opened.with-null-body.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json b/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json index 2cbd0142a..73252f005 100644 --- a/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/ready_for_review.payload.json b/payload-examples/api.github.com/pull_request/ready_for_review.payload.json index cef73ce29..f76c07b53 100644 --- a/payload-examples/api.github.com/pull_request/ready_for_review.payload.json +++ b/payload-examples/api.github.com/pull_request/ready_for_review.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json b/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json index c91ff8e26..da9c72845 100644 --- a/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json +++ b/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json b/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json index 97249de4c..58d95620e 100644 --- a/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/reopened.payload.json b/payload-examples/api.github.com/pull_request/reopened.payload.json index cd84dc581..ef1905f68 100644 --- a/payload-examples/api.github.com/pull_request/reopened.payload.json +++ b/payload-examples/api.github.com/pull_request/reopened.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json b/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json index 8c5c77a22..944e90a84 100644 --- a/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/review_request_removed.payload.json b/payload-examples/api.github.com/pull_request/review_request_removed.payload.json index 1d34ab531..0abaa088f 100644 --- a/payload-examples/api.github.com/pull_request/review_request_removed.payload.json +++ b/payload-examples/api.github.com/pull_request/review_request_removed.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/review_requested.payload.json b/payload-examples/api.github.com/pull_request/review_requested.payload.json index e405c7795..893d4e3ef 100644 --- a/payload-examples/api.github.com/pull_request/review_requested.payload.json +++ b/payload-examples/api.github.com/pull_request/review_requested.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/synchronize.payload.json b/payload-examples/api.github.com/pull_request/synchronize.payload.json index 8df7d6603..9d7e70b94 100644 --- a/payload-examples/api.github.com/pull_request/synchronize.payload.json +++ b/payload-examples/api.github.com/pull_request/synchronize.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/unassigned.payload.json b/payload-examples/api.github.com/pull_request/unassigned.payload.json index 831cde3ea..ee6eeb35a 100644 --- a/payload-examples/api.github.com/pull_request/unassigned.payload.json +++ b/payload-examples/api.github.com/pull_request/unassigned.payload.json @@ -256,7 +256,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -379,7 +380,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json b/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json index 05100e871..c4603420d 100644 --- a/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json @@ -256,7 +256,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -379,7 +380,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/unlabeled.payload.json b/payload-examples/api.github.com/pull_request/unlabeled.payload.json index ec942a6e5..d6e367364 100644 --- a/payload-examples/api.github.com/pull_request/unlabeled.payload.json +++ b/payload-examples/api.github.com/pull_request/unlabeled.payload.json @@ -201,7 +201,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -324,7 +325,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json b/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json index 55d87a11e..d8544cbdd 100644 --- a/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json @@ -201,7 +201,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -324,7 +325,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/unlocked.payload.json b/payload-examples/api.github.com/pull_request/unlocked.payload.json index 619dd5755..4bda770a8 100644 --- a/payload-examples/api.github.com/pull_request/unlocked.payload.json +++ b/payload-examples/api.github.com/pull_request/unlocked.payload.json @@ -201,7 +201,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -324,7 +325,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json b/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json index 011226ef9..30d4682f2 100644 --- a/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json @@ -201,7 +201,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -324,7 +325,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request_review/dismissed.payload.json b/payload-examples/api.github.com/pull_request_review/dismissed.payload.json index def03f8f6..58a5cf59b 100644 --- a/payload-examples/api.github.com/pull_request_review/dismissed.payload.json +++ b/payload-examples/api.github.com/pull_request_review/dismissed.payload.json @@ -261,7 +261,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -384,7 +385,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request_review/submitted.payload.json b/payload-examples/api.github.com/pull_request_review/submitted.payload.json index ace81712c..26f7643e4 100644 --- a/payload-examples/api.github.com/pull_request_review/submitted.payload.json +++ b/payload-examples/api.github.com/pull_request_review/submitted.payload.json @@ -261,7 +261,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -384,7 +385,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json b/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json index 3e58238a7..81f44d579 100644 --- a/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json @@ -261,7 +261,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -384,7 +385,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request_review_comment/created.payload.json b/payload-examples/api.github.com/pull_request_review_comment/created.payload.json index e11bf4144..dc16b8e43 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/created.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/created.payload.json @@ -288,7 +288,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -411,7 +412,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json b/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json index c9e82c81e..5ed025b73 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json @@ -288,7 +288,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -411,7 +412,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json b/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json index ae2f9363e..a271443ff 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json @@ -288,7 +288,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -411,7 +412,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json b/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json index d350805f7..c6276f700 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json @@ -289,7 +289,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -412,7 +413,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json b/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json index d200233cd..068dcb66a 100644 --- a/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json +++ b/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json @@ -221,7 +221,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -344,7 +345,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json b/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json index c3a1b15fe..7b479d9f4 100644 --- a/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json +++ b/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json @@ -221,7 +221,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -344,7 +345,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { diff --git a/payload-examples/api.github.com/registry_package/published.docker.payload.json b/payload-examples/api.github.com/registry_package/published.docker.payload.json index c7fb28cde..294239abf 100644 --- a/payload-examples/api.github.com/registry_package/published.docker.payload.json +++ b/payload-examples/api.github.com/registry_package/published.docker.payload.json @@ -134,7 +134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "info": { From 0739a71a9d7d4d4f9c2bc6b7f5c80c9bf790b839 Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Sun, 3 Mar 2024 20:55:43 -0500 Subject: [PATCH 7/8] build: update types --- payload-types/schema.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payload-types/schema.d.ts b/payload-types/schema.d.ts index 9cf4198df..5604bb141 100644 --- a/payload-types/schema.d.ts +++ b/payload-types/schema.d.ts @@ -791,7 +791,7 @@ export interface Repository { }; public?: boolean; organization?: string; - custom_properties?: { + custom_properties: { [k: string]: null | string | string[]; }; } From 333532ab80d474c3858f16ac1dbf8c4ef56eeb5a Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Sun, 3 Mar 2024 20:56:19 -0500 Subject: [PATCH 8/8] build: update index.json --- payload-examples/api.github.com/index.json | 7 ------- 1 file changed, 7 deletions(-) diff --git a/payload-examples/api.github.com/index.json b/payload-examples/api.github.com/index.json index 86949ce54..d2b1e0cb2 100644 --- a/payload-examples/api.github.com/index.json +++ b/payload-examples/api.github.com/index.json @@ -1,11 +1,4 @@ [ - { - "name": "branch_protection_configuration", - "description": "", - "properties": {}, - "actions": [], - "examples": [] - }, { "name": "branch_protection_rule", "description": "Activity related to a branch protection rule. For more information, see \"[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules).\"",