Skip to content

Private GitHub Actions that we share between repos.

Notifications You must be signed in to change notification settings

ronin-co/github-actions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

RONIN GitHub Actions and Workflows

A collection of reusable GitHub Workflows and Actions designed to streamline processes across RONIN’s internal repositories.

Usage

To get started, you'll need to configure the NPM_TOKEN_READ_AND_WRITE. This token can be obtained by creating an access token through your NPM account. All other necessary credentials are already configured as organization-wide secrets shared across all repositories.

Example

name: Remove Experimental Packages

on:
pull_request:
    branches:
    - main
    types: [closed]

jobs:
remove-experimental:
    uses: ronin-co/github-actions/.github/workflows/remove-experimental.yml@main
    with:
    branch_name: ${{ github.event.pull_request.head.ref }}
    package_dir: './'  # Adjust if needed
    secrets:
    NPM_TOKEN_READ_AND_WRITE: ${{ secrets.NPM_TOKEN_READ_AND_WRITE }}
    ORG_GH_RONIN_APP_ID: ${{ secrets.ORG_GH_RONIN_APP_ID }}
    ORG_GH_RONIN_PRIVATE_KEY: ${{ secrets.ORG_GH_RONIN_PRIVATE_KEY }}

About

Private GitHub Actions that we share between repos.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published