Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 759 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 759 Bytes

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.