Skip to content

Use StackSpot Workflow #10

Use StackSpot Workflow

Use StackSpot Workflow #10

Workflow file for this run

name: Use StackSpot Workflow
on:
workflow_dispatch:
inputs:
execution-id:
required: true
repository-url:
required: false
debug:
type: choice
options:
- true
- false
jobs:
stackspot-workflow:
runs-on: ubuntu-latest
environment: 'dev'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Stack Spot Workflow
uses: ./
with:
execution-id: "${{ github.event.inputs.execution-id }}"
client-id: "${{ secrets.CLIENT_ID }}"
client-secret: "${{ secrets.CLIENT_SECRET }}"
realm: "${{ vars.REALM }}"
debug: "${{ github.event.inputs.debug }}"
repository-url: "${{ github.event.inputs.repository-url }}"
- name: Logs CLI
if: failure()
run: sudo cat /home/runner/work/_temp/_github_home/.stk-dev/logs/logs.log
- name: Debug Http
if: "${{ inputs.debug == 'true' && always() }}"
run: sudo cat /home/runner/work/_temp/_github_home/.stk-dev/debug/http.txt