Skip to content

Commit 015073d

Browse files
Add automation for new java/kotlin/go template repos
1 parent b7caab3 commit 015073d

File tree

1 file changed

+64
-1
lines changed

1 file changed

+64
-1
lines changed

.github/workflows/release.yml

Lines changed: 64 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,67 @@ jobs:
123123
secrets: inherit
124124
with:
125125
source-directory: python/templates/lambda
126-
destination-repo: lambda-python-template
126+
destination-repo: lambda-python-template
127+
copy-java-maven-template:
128+
name: Copy Java Maven template to java-maven-template repo
129+
uses: ./.github/workflows/copy-to-repo.yml
130+
secrets: inherit
131+
with:
132+
source-directory: java/templates/java-maven
133+
destination-repo: java-maven-template
134+
copy-java-gradle-template:
135+
name: Copy Java Gradle template to java-gradle-template repo
136+
uses: ./.github/workflows/copy-to-repo.yml
137+
secrets: inherit
138+
with:
139+
source-directory: java/templates/java-gradle
140+
destination-repo: java-gradle-template
141+
copy-java-spring-boot-template:
142+
name: Copy Java Spring boot template to java-spring-boot-template repo
143+
uses: ./.github/workflows/copy-to-repo.yml
144+
secrets: inherit
145+
with:
146+
source-directory: java/templates/java-maven-spring-boot
147+
destination-repo: java-spring-boot-template
148+
copy-java-new-api-maven-template:
149+
name: Copy Java New API Maven template to java-new-api-maven-template repo
150+
uses: ./.github/workflows/copy-to-repo.yml
151+
secrets: inherit
152+
with:
153+
source-directory: java/templates/java-new-api-maven
154+
destination-repo: java-new-api-maven-template
155+
copy-java-new-api-gradle-template:
156+
name: Copy Java New API Gradle template to java-new-api-gradle-template repo
157+
uses: ./.github/workflows/copy-to-repo.yml
158+
secrets: inherit
159+
with:
160+
source-directory: java/templates/java-new-api-gradle
161+
destination-repo: java-new-api-gradle-template
162+
copy-java-new-api-spring-boot-template:
163+
name: Copy Java New API Spring boot template to java-new-api-spring-boot-template repo
164+
uses: ./.github/workflows/copy-to-repo.yml
165+
secrets: inherit
166+
with:
167+
source-directory: java/templates/java-new-api-maven-spring-boot
168+
destination-repo: java-new-api-spring-boot-template
169+
copy-kotlin-template:
170+
name: Copy Kotlin template to kotlin-template repo
171+
uses: ./.github/workflows/copy-to-repo.yml
172+
secrets: inherit
173+
with:
174+
source-directory: kotlin/templates/kotlin-gradle
175+
destination-repo: kotlin-template
176+
copy-kotlin-spring-boot-template:
177+
name: Copy Kotlin Spring boot template to kotlin-spring-boot-template repo
178+
uses: ./.github/workflows/copy-to-repo.yml
179+
secrets: inherit
180+
with:
181+
source-directory: kotlin/templates/kotlin-gradle-spring-boot
182+
destination-repo: kotlin-spring-boot-template
183+
copy-go-template:
184+
name: Copy Go template to go-template repo
185+
uses: ./.github/workflows/copy-to-repo.yml
186+
secrets: inherit
187+
with:
188+
source-directory: go/templates/go
189+
destination-repo: go-template

0 commit comments

Comments
 (0)