abc (#1) #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Inner Workflow | ||
Check failure on line 1 in .github/workflows/inner.yml GitHub Actions / .github/workflows/inner.ymlInvalid workflow file
|
||
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 }}" |