Skip to content

abc (#1)

abc (#1) #2

Workflow file for this run

name: Inner Workflow

Check failure on line 1 in .github/workflows/inner.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/inner.yml

Invalid workflow file

`on.workflow_run` does not reference any workflows. See https://docs.github.com/actions/learn-github-actions/events-that-trigger-workflows#workflow_run for more information
on:
workflow_run:
jobs:
print-inputs:
runs-on: ubuntu-latest
steps:
- name: Print commit details
run: |
echo "Commit Hash: ${{ github.event.inputs.commit-hash }}"
echo "Commit Author: ${{ github.event.inputs.commit-author }}"
echo "Commit Merger: ${{ github.event.inputs.commit-merger }}"
echo "Commit Message: ${{ github.event.inputs.commit-message }}"
echo "Commit Description: ${{ github.event.inputs.commit-description }}"