|
62 | 62 | - name: Update ${{ inputs.gradlePropertiesPath }}
|
63 | 63 | if: ${{ steps.latest-version.outputs.result != steps.current-version.outputs.result }}
|
64 | 64 | run: |
|
| 65 | + PLUGIN_SINCE_BUILD=$(echo "${{ steps.latest-version.outputs.result }}" | sed 's/-EAP-CANDIDATE-SNAPSHOT//' | sed 's/-CUSTOM-SNAPSHOT//') |
| 66 | + sed -i "s/pluginSinceBuild=.*/pluginSinceBuild=$PLUGIN_SINCE_BUILD/" ${{ inputs.gradlePropertiesPath }} |
65 | 67 | sed -i 's/platformVersion=${{ steps.current-version.outputs.result }}/platformVersion=${{ steps.latest-version.outputs.result }}/' ${{ inputs.gradlePropertiesPath }}
|
66 | 68 | git diff
|
67 | 69 | - name: Create Pull Request for Gateway Plugin
|
|
90 | 92 | commit-message: "Update Platform Version of ${{ inputs.pluginName }} to ${{ steps.latest-version.outputs.result }}"
|
91 | 93 | branch: "jetbrains/${{ inputs.pluginId }}-platform"
|
92 | 94 | labels: "team: IDE,editor: jetbrains"
|
93 |
| - team-reviewers: "engineering-ide" |
| 95 | + # We can't use `team-reviewers` until we resolve https://github.com/gitpod-io/gitpod/issues/12194 |
| 96 | + # team-reviewers: "engineering-ide" |
94 | 97 | - name: Create Pull Request for Backend Plugin
|
95 | 98 | if: ${{ inputs.pluginId == 'backend-plugin' && steps.latest-version.outputs.result != steps.current-version.outputs.result }}
|
96 | 99 | uses: peter-evans/create-pull-request@v4
|
@@ -119,14 +122,15 @@ jobs:
|
119 | 122 | commit-message: "Update Platform Version of ${{ inputs.pluginName }} to ${{ steps.latest-version.outputs.result }}"
|
120 | 123 | branch: "jetbrains/${{ inputs.pluginId }}-platform"
|
121 | 124 | labels: "team: IDE"
|
122 |
| - team-reviewers: "engineering-ide" |
| 125 | + # We can't use `team-reviewers` until we resolve https://github.com/gitpod-io/gitpod/issues/12194 |
| 126 | + # team-reviewers: "engineering-ide" |
123 | 127 | - name: Get previous job's status
|
124 | 128 | id: lastrun
|
125 | 129 | uses: filiptronicek/get-last-job-status@main
|
126 | 130 | - name: Slack Notification
|
127 | 131 | if: ${{ (success() && steps.lastrun.outputs.status == 'failed') || failure() }}
|
128 | 132 | uses: rtCamp/action-slack-notify@v2
|
129 | 133 | env:
|
130 |
| - SLACK_WEBHOOK: ${{ secrets.slackWebhook }} |
131 |
| - SLACK_COLOR: ${{ job.status }} |
132 |
| - SLACK_TITLE: ${{ inputs.productName }} |
| 134 | + SLACK_WEBHOOK: ${{ secrets.slackWebhook }} |
| 135 | + SLACK_COLOR: ${{ job.status }} |
| 136 | + SLACK_TITLE: ${{ inputs.productName }} |
0 commit comments