Skip to content

blahblah

blahblah #16

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-combined-composite-action:
runs-on: ubuntu-latest
steps:
- name: Run combined composite action
uses: ./.github/actions/testing-action
with:
name: "koshmarik"
name1: "Welcome to our project"
# Job to call the reusable workflow
call-reusable-workflow:
uses: ./.github/workflows/reusable-workflow.yml

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

View workflow run for this annotation

GitHub Actions / Greet User Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 37, Col: 11): Input message is required, but not provided while calling. .github/workflows/main.yml (Line: 39, Col: 13): Invalid input, name is not defined in the referenced workflow.
with:
name: "Hello from reusable workflow!"