Skip to content

Commit 2bf2abc

Browse files
committed
Version bumps
1 parent bf91b7c commit 2bf2abc

File tree

13 files changed

+13
-15
lines changed

13 files changed

+13
-15
lines changed

components/github/actions/create-gist/create-gist.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "github-create-gist",
66
name: "Create Gist",
77
description: "Allows you to add a new gist with one or more files. [See the documentation](https://docs.github.com/en/rest/gists/gists?apiVersion=2022-11-28#create-a-gist)",
8-
version: "0.0.6",
8+
version: "0.0.7",
99
type: "action",
1010
props: {
1111
github,

components/github/actions/create-issue-comment/create-issue-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "github-create-issue-comment",
55
name: "Create Issue Comment",
66
description: "Create a new comment in a issue. [See the documentation](https://docs.github.com/en/rest/issues/comments#create-an-issue-comment)",
7-
version: "0.0.17",
7+
version: "0.0.18",
88
type: "action",
99
props: {
1010
github,

components/github/actions/create-issue/create-issue.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "github-create-issue",
77
name: "Create Issue",
88
description: "Create a new issue in a Gihub repo. [See the documentation](https://docs.github.com/en/rest/issues/issues#create-an-issue)",
9-
version: "0.3.{{ts}}",
9+
version: "0.3.0",
1010
type: "action",
1111
props: {
1212
github,

components/github/actions/create-pull-request/create-pull-request.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "github-create-pull-request",
66
name: "Create Pull Request",
77
description: "Creates a new pull request for a specified repository. [See the documentation](https://docs.github.com/en/rest/pulls/pulls#create-a-pull-request)",
8-
version: "0.1.{{ts}}",
8+
version: "0.1.0",
99
type: "action",
1010
props: {
1111
github,

components/github/actions/create-repository/create-repository.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "github-create-repository",
55
name: "Create Repository",
66
description: "Creates a new repository for the authenticated user. [See the documentation](https://docs.github.com/en/rest/repos/repos#create-a-repository-for-the-authenticated-user)",
7-
version: "0.0.12",
7+
version: "0.0.13",
88
type: "action",
99
props: {
1010
github,

components/github/actions/get-issue-assignees/get-issue-assignees.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "github-get-issue-assignees",
55
name: "Get Issue Assignees",
66
description: "Get assignees for an issue in a Gihub repo. [See the documentation](https://docs.github.com/en/rest/issues/issues#get-an-issue)",
7-
version: "0.0.17",
7+
version: "0.0.18",
88
type: "action",
99
props: {
1010
github,

components/github/actions/get-reviewers/get-reviewers.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "github-get-reviewers",
77
name: "Get Reviewers",
88
description: "Get reviewers for a PR ([see documentation](https://docs.github.com/en/rest/pulls/reviews#list-reviews-for-a-pull-request)) or Commit SHA ([see documentation](https://docs.github.com/en/rest/commits/commits#list-pull-requests-associated-with-a-commit)).",
9-
version: "0.1.{{ts}}",
9+
version: "0.1.0",
1010
type: "action",
1111
props: {
1212
github,

components/github/actions/list-gists-for-a-user/list-gists-for-a-user.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "github-list-gists-for-a-user",
66
name: "List Gists for a User",
77
description: "Lists public gists for the specified user. [See the documentation](https://docs.github.com/en/rest/gists/gists?apiVersion=2022-11-28#list-gists-for-a-user)",
8-
version: "0.1.{{ts}}",
8+
version: "0.1.0",
99
type: "action",
1010
props: {
1111
github: {

components/github/actions/list-releases/list-releases.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
// Import necessary modules
21
import github from "../../github.app.mjs";
32

4-
// Define the action
53
export default {
64
key: "github-list-releases",
75
name: "List Releases",
86
description: "List releases for a repository [See the documentation](https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#list-releases)",
9-
version: "0.0.5",
7+
version: "0.0.6",
108
type: "action",
119
props: {
1210
github,

components/github/actions/search-issues-and-pull-requests/search-issues-and-pull-requests.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "github-search-issues-and-pull-requests",
55
name: "Search Issues and Pull Requests",
66
description: "Find issues and pull requests by state and keyword. [See the documentation](https://docs.github.com/en/search-github/searching-on-github/searching-issues-and-pull-requests)",
7-
version: "0.2.{{ts}}",
7+
version: "0.2.0",
88
type: "action",
99
props: {
1010
github,

0 commit comments

Comments
 (0)