https://github.com/stack-spot/workflow-github-action-report-status
Repository for use by external customers.
https://github.com/stack-spot/workflow-github-action-report-status
production workspace
Last synced: 10 months ago
JSON representation
Repository for use by external customers.
- Host: GitHub
- URL: https://github.com/stack-spot/workflow-github-action-report-status
- Owner: stack-spot
- Created: 2023-12-11T14:12:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-19T14:31:28.000Z (about 2 years ago)
- Last Synced: 2023-12-19T15:32:45.287Z (about 2 years ago)
- Topics: production, workspace
- Language: Shell
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# StackSpot Workflow Action Report Status
This action execute StackSpot Workflow Report Status
## Example usage
```yaml
- name: Stack Spot Workflow Report Status Started
uses: stack-spot/workflow-github-action-report-status
with:
execution-id: "${{ github.event.inputs.execution-id }}"
client-id: "${{ secrets.CLIENT_ID }}"
client-secret: "${{ secrets.CLIENT_SECRET }}"
realm: "${{ secrets.REALM }}"
name: "Custom step name"
status: "started"
- name: Logs CLI
if: failure()
run: sudo cat /home/runner/work/_temp/_github_home/.stk/logs/logs.log
- name: Debug Http
if: "${{ inputs.debug == 'true' && always() }}"
run: sudo cat /home/runner/work/_temp/_github_home/.stk/debug/http.txt
- name: Example Workflow Step
run: |
echo "Workflow Running...."
sleep 10
echo "Workflow Finished."
- name: Stack Spot Workflow Report Status Finished
uses: stack-spot/workflow-github-action-report-status
with:
execution-id: "${{ github.event.inputs.execution-id }}"
client-id: "${{ secrets.CLIENT_ID }}"
client-secret: "${{ secrets.CLIENT_SECRET }}"
realm: "${{ secrets.REALM }}"
name: "Custom step name"
status: "finished"
```