Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change issue creation action to JasonEtco/create-an-issue #256

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/issue-template-checkStartSpringIO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Check start.spring.io
---

### Context
[Failed Run](https://github.com/{{ env.GITHUB_REPOSITORY }}/actions/runs/{{ env.GITHUB_RUN_ID }})
Workflow name = `{{ env.GITHUB_WORKFLOW }}`
Job - `{{ env.GITHUB_JOB }}`
### Error Info
See Failed Run link above for more info, but the likely 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.
22 changes: 10 additions & 12 deletions .github/workflows/checkStartSpringIO.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Query start.spring.io
id: checkStartSpringIO
uses: fjogeleit/[email protected]
Expand All @@ -23,17 +24,14 @@ jobs:
echo ${{ steps.checkStartSpringIO.outputs.response }}
echo ${{ steps.checkStartSpringIO.outputs.headers }}
- name: Create Issue Action
uses: nashmaniac/create-issue-action@v1.1
uses: JasonEtco/create-[email protected].1
if: ${{ failure() }} # only run when this job is failed.
env:
GITHUB_JOB: ${{ github.job }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_RUN_ID: ${{ github.run_id }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_WORKFLOW: ${{ github.workflow }}
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.
filename: .github/issue-template-checkStartSpringIO.md
update_existing: true
Loading