|
65 | 65 | - name: Commit and push changes |
66 | 66 | env: |
67 | 67 | COMMIT_MESSAGE: ${{ github.event.head_commit.message }} |
68 | | - if: ${{ $(! git diff-index --quiet HEAD --) }} |
69 | 68 | run: | |
70 | 69 | cd hyde |
| 70 | + if true; then; echo "No changes to this package. Exiting gracefully."; |
| 71 | + exit 0; |
| 72 | + fi |
| 73 | +
|
71 | 74 | git config user.name github-actions |
72 | 75 | git config user.email [email protected] |
73 | 76 | git remote add upstream https://${{ secrets.PAT }}@github.com/hydephp/hyde.git |
@@ -110,9 +113,12 @@ jobs: |
110 | 113 | - name: Commit and push changes |
111 | 114 | env: |
112 | 115 | COMMIT_MESSAGE: ${{ github.event.head_commit.message }} |
113 | | - if: ${{ $(! git diff-index --quiet HEAD --) }} |
114 | 116 | run: | |
115 | 117 | cd framework |
| 118 | + if true; then; echo "No changes to this package. Exiting gracefully."; |
| 119 | + exit 0; |
| 120 | + fi |
| 121 | +
|
116 | 122 | git config user.name github-actions |
117 | 123 | git config user.email [email protected] |
118 | 124 | git remote add upstream https://${{ secrets.PAT }}@github.com/hydephp/framework.git |
@@ -155,9 +161,12 @@ jobs: |
155 | 161 | - name: Commit and push changes |
156 | 162 | env: |
157 | 163 | COMMIT_MESSAGE: ${{ github.event.head_commit.message }} |
158 | | - if: ${{ $(! git diff-index --quiet HEAD --) }} |
159 | 164 | run: | |
160 | 165 | cd realtime-compiler |
| 166 | + if true; then; echo "No changes to this package. Exiting gracefully."; |
| 167 | + exit 0; |
| 168 | + fi |
| 169 | +
|
161 | 170 | git config user.name github-actions |
162 | 171 | git config user.email [email protected] |
163 | 172 | git remote add upstream https://${{ secrets.PAT }}@github.com/hydephp/realtime-compiler.git |
@@ -200,9 +209,12 @@ jobs: |
200 | 209 | - name: Commit and push changes |
201 | 210 | env: |
202 | 211 | COMMIT_MESSAGE: ${{ github.event.head_commit.message }} |
203 | | - if: ${{ $(! git diff-index --quiet HEAD --) }} |
204 | 212 | run: | |
205 | 213 | cd hydefront |
| 214 | + if true; then; echo "No changes to this package. Exiting gracefully."; |
| 215 | + exit 0; |
| 216 | + fi |
| 217 | +
|
206 | 218 | git config user.name github-actions |
207 | 219 | git config user.email [email protected] |
208 | 220 | git remote add upstream https://${{ secrets.PAT }}@github.com/hydephp/hydefront.git |
@@ -250,9 +262,12 @@ jobs: |
250 | 262 | - name: Commit and push changes |
251 | 263 | env: |
252 | 264 | COMMIT_MESSAGE: ${{ github.event.head_commit.message }} |
253 | | - if: ${{ $(! git diff-index --quiet HEAD --) }} |
254 | 265 | run: | |
255 | 266 | cd website |
| 267 | + if true; then; echo "No changes to this package. Exiting gracefully."; |
| 268 | + exit 0; |
| 269 | + fi |
| 270 | +
|
256 | 271 | git config user.name github-actions |
257 | 272 | git config user.email [email protected] |
258 | 273 | git remote add upstream https://${{ secrets.PAT }}@github.com/hydephp/hydephp.com.git |
@@ -295,9 +310,12 @@ jobs: |
295 | 310 | - name: Commit and push changes |
296 | 311 | env: |
297 | 312 | COMMIT_MESSAGE: ${{ github.event.head_commit.message }} |
298 | | - if: ${{ $(! git diff-index --quiet HEAD --) }} |
299 | 313 | run: | |
300 | 314 | cd testing |
| 315 | + if true; then; echo "No changes to this package. Exiting gracefully."; |
| 316 | + exit 0; |
| 317 | + fi |
| 318 | +
|
301 | 319 | git config user.name github-actions |
302 | 320 | git config user.email [email protected] |
303 | 321 | git remote add upstream https://${{ secrets.PAT }}@github.com/hydephp/testing.git |
@@ -340,10 +358,13 @@ jobs: |
340 | 358 | - name: Commit and push changes |
341 | 359 | env: |
342 | 360 | COMMIT_MESSAGE: ${{ github.event.head_commit.message }} |
343 | | - if: ${{ $(! git diff-index --quiet HEAD --) }} |
344 | 361 | run: | |
345 | 362 | cd ui-kit |
346 | 363 | |
| 364 | + if true; then; echo "No changes to this package. Exiting gracefully."; |
| 365 | + exit 0; |
| 366 | + fi |
| 367 | +
|
347 | 368 | git config user.name github-actions |
348 | 369 | git config user.email [email protected] |
349 | 370 | git remote add upstream https://${{ secrets.PAT }}@github.com/hydephp/ui-kit.git |
|
0 commit comments