comigor / jinja-action

Jinja2 is a fast and straightforward templating engine. You can use this action to easily run it in your GitHub workflows.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jinja2-Action

Jinja2 is a fast and straightforward templating engine. You can use this action to easily run it in your GitHub workflows. This Action support spesific files templating or all files in dir (by patern) templating.

Main CI/CD Pipeline

Using Action Inputs

- name: Render Repo Name
  uses: jayamanikharyono/jinja-action@v0.1
  with:
    data: repo_name=${{ github.event.repository.name }}
    path: tests/test_template_single.py

Using Data Files (Json)

- name: Render all DAGs in Dir
  uses: jayamanikharyono/jinja-action@v0.1
  with:
    datafile: tests/template_data.json
    path: tests/multi/*.py

Examples of usage scenarios

Raw file

def print_status():
    print('{{ repo_name }}')
    return ("Templating Succeded!")

Rendered file

def print_status():
    print('master')
    return ("Templating Succeded!")

About

Jinja2 is a fast and straightforward templating engine. You can use this action to easily run it in your GitHub workflows.

License:MIT License


Languages

Language:Python 64.1%Language:Shell 24.6%Language:Dockerfile 11.3%