Skip to content

Fix readme and run workflow triggers #4

Fix readme and run workflow triggers

Fix readme and run workflow triggers #4

Workflow file for this run

name: 'Run action'
on:
push:
branches:
- '**'
paths:
- '.github/workflows/**'
- 'src/**'
- 'dist/**'
- 'package*.json'
- 'action.json'
jobs:
run-action:
name: 'Run action'
strategy:
matrix:
system:
- ubuntu-latest
runs-on: ${{ matrix.system }}
steps:
- name: Print input
id: echo-action
uses: imesense/gha-echo-action@ecdbfc7e5d602ee3c2b685defd5177ff27041578
with:
input-string: 'Input'
- name: Print output
run: |
echo "${{ steps.echo-action.outputs.output-string }}"