Skip to content

bitfunk/action-workflows

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bitfunk Action Workflows

GitHub Action workflows for reuse written in Kotlin.

Workflows

Auto approve

This will approve a pull-request when the owner (wmontwe) comments with 👍

name: CI - Auto approve

on:
  issue_comment:
    types:
      - created
  
jobs:
  auto-approve:
    uses: bitfunk/action-workflows/.github/workflows/owner-auto-approve.yaml@main

Develop

We use GitHub Actions Kotlin DSL to write our GitHub Action workflows.

Open the Kotlin scripts in IntelliJ IDEA and change them to your needs. Run them once to generate the corresponding yaml representation. Commit and push your changes.

Releases

No releases published