@@ -103,34 +103,47 @@ several operators and properties which can be used to control this process.
103103
104104For ` kind: github/repo ` and ` kind: github/star `
105105
106- | Field | Type | Description (_ Example_ ) |
107- | --------------------- | --------- | ------------------------------------------------------------------------------------------------- |
108- | ` repo.name ` | ` string ` | The name of the repository (_ Hello-World_ ) |
109- | ` repo.fullname ` | ` string ` | The full-name of the repository (_ octocat/Hello-World_ ) |
110- | ` repo.private ` | ` boolean ` | Whether the repository is private |
111- | ` repo.public ` | ` boolean ` | Whether the repository is public |
112- | ` repo.fork ` | ` boolean ` | Whether the repository is a fork |
113- | ` repo.size ` | ` integer ` | The size of the repository, in kilobytes (_ 1024_ ). |
114- | ` repo.archived ` | ` boolean ` | Whether the repository is archived |
115- | ` repo.disabled ` | ` boolean ` | Returns whether or not this repository disabled |
116- | ` repo.default_branch ` | ` string ` | The default branch of the repository (_ main_ ) |
117- | ` repo.empty ` | ` boolean ` | Whether the repository is empty (When a repository is initially created, ` repo.empty ` is ` true ` ) |
118- | ` repo.template ` | ` boolean ` | Whether this repository acts as a template that can be used to generate new repositories |
119- | ` repo.forks ` | ` integer ` | The number of times this repository is forked |
120- | ` repo.stargazers ` | ` integer ` | The number of people starred this repository |
106+ | Field | Type | Description (_ Example_ ) |
107+ | ------------------------ | ------------ | ---------------------------------------------------------------------------------------------------- |
108+ | ` repo.name ` | ` string ` | The name of the repository (_ Hello-World_ ) |
109+ | ` repo.fullname ` | ` string ` | The full-name of the repository (_ octocat/Hello-World_ ) |
110+ | ` repo.private ` | ` boolean ` | Whether the repository is private |
111+ | ` repo.public ` | ` boolean ` | Whether the repository is public |
112+ | ` repo.fork ` | ` boolean ` | Whether the repository is a fork |
113+ | ` repo.size ` | ` integer ` | The size of the repository, in kilobytes (_ 1024_ ). |
114+ | ` repo.archived ` | ` boolean ` | Whether the repository is archived |
115+ | ` repo.disabled ` | ` boolean ` | Returns whether or not this repository disabled |
116+ | ` repo.default_branch ` | ` string ` | The default branch of the repository (_ main_ ) |
117+ | ` repo.empty ` | ` boolean ` | Whether the repository is empty (When a repository is initially created, ` repo.empty ` is ` true ` ) |
118+ | ` repo.template ` | ` boolean ` | Whether this repository acts as a template that can be used to generate new repositories |
119+ | ` repo.forks ` | ` integer ` | The number of times this repository is forked |
120+ | ` repo.stargazers ` | ` integer ` | The number of people starred this repository |
121121
122122For ` kind: github/release `
123123
124- | Field | Type | Description (_ Example_ ) |
125- | -------------------- | --------- | ----------------------------------------------------------------- |
126- | ` release.tag ` | ` string ` | The name of the tag (_ v1.0.0_ ) |
127- | ` release.name ` | ` string ` | The name of the release (_ v1.0.0_ ) |
128- | ` release.draft ` | ` boolean ` | Whether the release is a draft (unpublished) release |
129- | ` release.prerelease ` | ` boolean ` | Whether to identify the release as a prerelease or a full release |
130- | ` release.published ` | ` boolean ` | Whether the release is a published (not a draft) release |
131- | ` asset.name ` | ` string ` | The file name of the asset (_ github-backup-darwin-arm64_ ) |
132- | ` asset.size ` | ` integer ` | The size of the asset, in kilobytes. (_ 1024_ ) |
133- | ` asset.downloaded ` | ` boolean ` | If the asset was downloaded at least once from the GitHub Release |
124+ | Field | Type | Description (_ Example_ ) |
125+ | -----------------------| ------------| --------------------------------------------------------------------|
126+ | ` release.tag ` | ` string ` | The name of the tag (_ v1.0.0_ ) |
127+ | ` release.name ` | ` string ` | The name of the release (_ v1.0.0_ ) |
128+ | ` release.draft ` | ` boolean ` | Whether the release is a draft (unpublished) release |
129+ | ` release.prerelease ` | ` boolean ` | Whether to identify the release as a prerelease or a full release |
130+ | ` release.published ` | ` boolean ` | Whether the release is a published (not a draft) release |
131+ | ` asset.name ` | ` string ` | The file name of the asset (_ github-backup-darwin-arm64_ ) |
132+ | ` asset.size ` | ` integer ` | The size of the asset, in kilobytes. (_ 1024_ ) |
133+ | ` asset.downloaded ` | ` boolean ` | If the asset was downloaded at least once from the GitHub Release |
134+
135+ For ` kind: github/gist `
136+
137+ | Field | Type | Description |
138+ | -------------------------| -----------| ------------------------------------------------|
139+ | ` gist.public ` | ` boolean ` | Whether the gist is public |
140+ | ` gist.private ` | ` boolean ` | Whether the gist is private |
141+ | ` gist.comments_enabled ` | ` boolean ` | Whether comments are enabled for the gist |
142+ | ` gist.comments ` | ` integer ` | Number of comments on the gist |
143+ | ` gist.files ` | ` integer ` | Number of files in the gist |
144+ | ` gist.file_names ` | ` array ` | List of file names in the gist |
145+ | ` gist.languages ` | ` array ` | List of programming languages used in the gist |
146+ | ` gist.type ` | ` string ` | Type of content in the gist |
134147
135148### Examples
136149
0 commit comments