diff --git a/.github/workflows/gradle-release.yml b/.github/workflows/gradle-release.yml index 42c3acd..fec73fe 100644 --- a/.github/workflows/gradle-release.yml +++ b/.github/workflows/gradle-release.yml @@ -34,7 +34,7 @@ jobs: with: commit_message: '[bot] Update develocity-injection reference script as ${{ inputs.version }}' tagging_message: '${{ inputs.version }}' - + update-gradle-actions: needs: [update-reference] uses: ./.github/workflows/gradle-send-update-pr.yml @@ -44,3 +44,33 @@ jobs: script-location: 'sources/src/resources/init-scripts/gradle-actions.inject-develocity.init.gradle' secrets: GH_TOKEN: ${{ secrets.GH_TOKEN }} + + update-jenkins-gradle-plugin: + needs: [update-reference] + uses: ./.github/workflows/gradle-send-update-pr.yml + with: + version: ${{ inputs.version }} + repository: 'bigdaz/jenkins-gradle-plugin' + script-location: 'src/main/resources/hudson/plugins/gradle/injection/init-script.gradle' + secrets: + GH_TOKEN: ${{ secrets.GH_TOKEN }} + + update-develocity-bamboo-plugin: + needs: [update-reference] + uses: ./.github/workflows/gradle-send-update-pr.yml + with: + version: ${{ inputs.version }} + repository: 'bigdaz/develocity-bamboo-plugin' + script-location: 'src/main/resources/develocity/gradle/develocity-init-script.gradle' + secrets: + GH_TOKEN: ${{ secrets.GH_TOKEN }} + + update-develocity-teamcity-plugin: + needs: [update-reference] + uses: ./.github/workflows/gradle-send-update-pr.yml + with: + version: ${{ inputs.version }} + repository: 'bigdaz/teamcity-build-scan-plugin' + script-location: 'agent/src/main/resources/build-scan-init.gradle' + secrets: + GH_TOKEN: ${{ secrets.GH_TOKEN }}