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

https://github.com/djiit/gong-action


https://github.com/djiit/gong-action

Last synced: 29 days ago
JSON representation

Awesome Lists containing this project

README

        

# Gong Action

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Djiit/gong-action/test.yml?branch=main)](https://github.com/Djiit/gong-action/actions)
[![GitHub](https://img.shields.io/github/license/Djiit/gong-action)](https://img.shields.io/github/license/Djiit/gong-action)

## Description

Download and run gong binary from Djiit/gong releases

## Usage

Here is an example workflow to run Gong with this action:

```yaml
name: Run Gong

on:
pull_request:
branches: [main]

jobs:
run-gong:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Run Gong
uses: Djiit/gong-action@v1
with:
# Optional - version of `gong` to download
version: "latest"
# Optional - arguments to pass to `gong`
args: "--help"
```

## Inputs

| INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION |
|---------|--------|----------|-------------------------|----------------------------------------------------------------------|
| args | string | false | | Arguments to pass to gong |
| token | string | false | `"${{ github.token }}"` | GitHub token to use for API
requests (defaults to GITHUB_TOKEN) |
| version | string | false | `"latest"` | Version of gong to download (defaults to latest) |

## Outputs

No outputs.

## Plateformes supportées

Cette action supporte les plateformes suivantes :

- Linux (amd64, arm64)
- macOS (amd64, arm64)
- Windows (amd64, 386)

## Développement

Pour contribuer à ce projet :

1. Cloner le dépôt
2. Installer les dépendances : `npm install`
3. Apporter vos modifications
4. Compiler l'action : `npm run build`
5. Soumettre une Pull Request

## Licence

MIT