Skip to content

start.spring.io checker #152

start.spring.io checker

start.spring.io checker #152

name: start.spring.io checker
on:
schedule:
# Run at midnight every day
- cron: "0 0 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: Query start.spring.io
id: checkStartSpringIO
uses: fjogeleit/[email protected]
with:
url: https://start.spring.io/pom.xml?dependencies=solace,cloud-stream
# url: https://start.spring.io/pom.xml?bootVersion=3.0.0-SNAPSHOT&dependencies=solace,cloud-stream
- name: Check Response
run: |
echo ${{ steps.checkStartSpringIO.outputs.response }}
echo ${{ steps.checkStartSpringIO.outputs.headers }}
- name: Create Issue Action
uses: nashmaniac/[email protected]
if: ${{ failure() }} # only run when this job is failed.
with:
title: start.spring.io Request Failed
token: ${{ github.token }}
# assignees: ${{ github.actor }}
# labels: bug
body: |
### Context
[Failed Run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
Workflow name = `${{ github.workflow }}`
Job - `${{ github.job }}`
### Error Info
See Failed Run link above for more info, but the likley culprit is a new version of Spring Boot has been released and we need to open an issue over at [start.spring.io](https://github.com/spring-io/start.spring.io/issues) to have them re-enable Solace.