/action-packed

Action template with action-packed workflow boilerplate with all the things!

Primary LanguageShellMIT LicenseMIT

Click the Use this template button above to create a new repository using this repository as a template.

CI GitHub Marketplace

TODO Action

This action runs something.

Usage

Create a workflow file in your repository e.g. .github/workflows/workflow.yml. An example workflow file is provided below. For more information, see Creating a workflow file.

Example workflow

on: [push, pull_request]
jobs:
    build:
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v2
            - uses: lucianposton/TODO@v1

Input Parameters

The following inputs can be specified in the workflow file using the with keyword syntax.

Input Description Default Usage
path The working directory to use. The path is relative to the checked out repository. $GITHUB_WORKSPACE optional
            - uses: lucianposton/TODO@v1
              with:
                path: subdir

Outputs

The following outputs are emitted, which can be referenced using the steps context.

Output Description Example
TODO The result value. TODO
            - uses: lucianposton/TODO@v1
              id: step_id
            - run: echo "Result is ${{ steps.step_id.outputs.TODO }}"