Skip to content

libresource/action-template

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Action Template

Open source repository template for GitHub actions

Support

Documentation Discussions Issues

Development

Last Commit

  • Issues Closed Issues
  • Pull Requests Closed Pull Requests
  • Discussions

Menu

Mission

To provide quickstart with open source repository what contains GitHub action

Open Source Project

This is the open source project with GPL-3.0 license. Be free to use, fork, clone and contribute.

Features

Install

Just use this repository as GitHub repository template

Quickstart

Run using stable version

Without params

name: Test Action Without Param

on:
  push:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: Test Action Without Param
      uses: libresource/action-template@v1.0.0

With params

name: Test Action With Param

on:
  push:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: Test Action With Param
      uses: libresource/action-template@v1.0.0
      with:
        param-example: 'Hello GitHub!'

Run using last version (maybe unstable)

uses: libresource/action-template@main

Examples

GitHub's repositories which use this template

Contributing

You are welcome! To easy start please check:

FAQ

Empty yet