An open API service indexing awesome lists of open source software.

https://github.com/actalog/faker

🃏 Generate fake data in your GitHub workflows
https://github.com/actalog/faker

actions faker github javascript

Last synced: 2 months ago
JSON representation

🃏 Generate fake data in your GitHub workflows

Awesome Lists containing this project

README

          

# @actalog/faker

[![CI](https://github.com/actalog/faker/actions/workflows/ci.yml/badge.svg)](https://github.com/actalog/faker/actions/workflows/ci.yml)
[![CD](https://github.com/actalog/faker/actions/workflows/cd.yml/badge.svg)](https://github.com/actalog/faker/actions/workflows/cd.yml)

Generates fake data in your GitHub workflows

```yml
jobs:
faker:
name: Faker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: email
uses: actalog/faker@v1
with:
module: 'internet'
method: 'email'
- run: echo ${{ steps.email.outputs.value }}
```