https://github.com/djiit/gong-action
https://github.com/djiit/gong-action
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/djiit/gong-action
- Owner: Djiit
- License: mit
- Created: 2025-03-19T20:55:10.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-03-22T12:56:06.000Z (about 1 month ago)
- Last Synced: 2025-03-22T13:22:26.267Z (about 1 month ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Gong Action
[](https://github.com/Djiit/gong-action/actions)
[](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 Gongon:
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