Skip to content

Commit

Permalink
Add missing events for Discussion
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Jan 17, 2024
1 parent 4ce6627 commit a768592
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/includes/attributes.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:quarkus-version: 3.6.0
:quarkus-version: 3.6.5
:quarkus-github-app-version: 2.1.1

:github-api-javadoc-root-url: https://github-api.kohsuke.org/apidocs/org/kohsuke/github
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@
String NAME = Actions.CATEGORY_CHANGED;
}

@Discussion(Closed.NAME)
@Target(PARAMETER)
@Retention(RUNTIME)
@Qualifier
public @interface Closed {

String NAME = Actions.CLOSED;
}

@Discussion(Created.NAME)
@Target(PARAMETER)
@Retention(RUNTIME)
Expand Down Expand Up @@ -91,6 +100,15 @@
String NAME = Actions.PINNED;
}

@Discussion(Reopened.NAME)
@Target(PARAMETER)
@Retention(RUNTIME)
@Qualifier
public @interface Reopened {

String NAME = Actions.REOPENED;
}

@Discussion(Transferred.NAME)
@Target(PARAMETER)
@Retention(RUNTIME)
Expand Down

0 comments on commit a768592

Please sign in to comment.