Open source repository template for GitHub actions
To provide quickstart with open source repository what contains GitHub action
This is the open source project with GPL-3.0 license. Be free to use, fork, clone and contribute.
- Action files templates
- This template base on libresource/open-source-checklist. It contains may useful files for open source project: (CHECKLIST.md, CONTRIBUTING.md, CODE_OF_CONDUCT.md, and much more).
- Action example
Just use this repository as GitHub repository template
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
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!'
- Change action.yml, Dockerfile and entrypoint.sh
- Change this README.md
- Check all useful files in the project
- Use CHECKLIST.md to check all of you need for good open source project
- Enjoy
uses: libresource/action-template@main
GitHub's repositories which use this template
- action-template (This repository)
- fun-adventure-in-turkey (Visual Novel on RenPy)
You are welcome! To easy start please check:
Empty yet