Skip to content

no message

no message #14

Workflow file for this run

name: Greet User Workflow
on:
push:
branches:
- 'master'
permissions:
id-token: write # Required for requesting the JWT
contents: read # Required for actions/checkout
jobs:
example-job:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run Echo Greeting Action
uses: ./.github/actions/testing-action
with:
name: 'koshmarik'
# Job to call the composite action
call-composite-action:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run composite action
uses: ./.github/actions/print-message
with:
message: "Hello from composite action!"
# Job to call the reusable workflow
call-reusable-workflow:
uses: ./.github/workflows/reusable-workflow.yml

Check failure on line 39 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

error parsing called workflow ".github/workflows/main.yml" -> "./.github/workflows/reusable-workflow.yml" (source branch with sha:9d73f645cd190b1b980bab6b73488a064849c82f) : No event triggers defined in `on`
with:
message: "Hello from reusable workflow!"