Skip to content

Commit f8888ae

Browse files
authored
Merge pull request #588 from gsmet/fix-repository-event
Fix some of the @repository events
2 parents 7fd5dbb + ab47434 commit f8888ae

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

events/src/main/java/io/quarkiverse/githubapp/event/Repository.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
String NAME = Actions.EDITED;
5656
}
5757

58-
@Release(Privatized.NAME)
58+
@Repository(Privatized.NAME)
5959
@Target(PARAMETER)
6060
@Retention(RUNTIME)
6161
@Qualifier
@@ -64,7 +64,7 @@
6464
String NAME = Actions.PRIVATIZED;
6565
}
6666

67-
@Release(Publicized.NAME)
67+
@Repository(Publicized.NAME)
6868
@Target(PARAMETER)
6969
@Retention(RUNTIME)
7070
@Qualifier
@@ -73,7 +73,7 @@
7373
String NAME = Actions.PUBLICIZED;
7474
}
7575

76-
@Release(Renamed.NAME)
76+
@Repository(Renamed.NAME)
7777
@Target(PARAMETER)
7878
@Retention(RUNTIME)
7979
@Qualifier
@@ -82,7 +82,7 @@
8282
String NAME = Actions.RENAMED;
8383
}
8484

85-
@Release(Transferred.NAME)
85+
@Repository(Transferred.NAME)
8686
@Target(PARAMETER)
8787
@Retention(RUNTIME)
8888
@Qualifier
@@ -91,7 +91,7 @@
9191
String NAME = Actions.TRANSFERRED;
9292
}
9393

94-
@Release(Unarchived.NAME)
94+
@Repository(Unarchived.NAME)
9595
@Target(PARAMETER)
9696
@Retention(RUNTIME)
9797
@Qualifier

0 commit comments

Comments
 (0)