.github/actions/status-event/action.yml
Metadata
- Purpose: Reusable GitHub Action used by workflows.
- Domain:
automation - Language:
yaml - Bytes: 666
- Lines: 29
- Content hash (short):
14dab591 - Source (start): .github/actions/status-event/action.yml:1
- Source (end): .github/actions/status-event/action.yml:29
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
name: "EGI Status Event"
description: "Post a status event to the Status Service API"
inputs:
project_id:
required: true
environment:
required: true
version:
required: true
event_type:
required: true
status_url:
required: true
metadata_json:
required: false
runs:
using: "composite"
steps:
- name: Post status event
shell: bash
run: |
"${GITHUB_ACTION_PATH}/post.sh" \
"${{ inputs.project_id }}" \
"${{ inputs.environment }}" \
"${{ inputs.version }}" \