Skip to content
align-center

GitHub Action

action-organization-manager

v0.0.8 Latest version

action-organization-manager

align-center

action-organization-manager

manager organization repositories in one file

Installation

Copy and paste the following snippet into your .yml file.

              

- name: action-organization-manager

uses: linuxdeepin/[email protected]

Learn more about this action in linuxdeepin/action-organization-manager

Choose a version

action-organization-manager

github actions for organization manage

Features

  1. Features switch (Wiki,Issues...)
  2. Branchs protection

Input

  app_id:
    description: "github app id"
    required: true
  installation_id:
    description: "github app installation id"
    required: true
  private_key:
    description: "github app private key"
    required: true
  config_file:
    description: "manager config file"
    required: true

Uses

  1. Create and Install GitHub App in organization settings

  2. Get AppID (App setting -> General) and InstallationID (App setting -> Advanced -> Recent Deliveries -> Payload)

  3. Generate GitHub App Private Key and upload to organization secrets

  4. Add .github/workflows/org-mgr.yml to organization repository

    name: organization-manager
    on:
    push:
        paths: ["organization.yaml", ".github/workflows/org-mgr.yml"]
    
    jobs:
        job:
            name: organization-manager
            runs-on: ubuntu-latest
            steps:
            - uses: myml/[email protected]
                with:
                app_id: $app_id
                installation_id: $installation_id
                private_key: ${{ secrets.APP_PRIVATE_KEY }}
                config_file: organization.yaml
  5. Add organization.yaml config file to organization repository

    organization: $organization_name
    settings:
    - repositories: [$repositories_name or regular expression]
        features:
        issues:
            enable: true
        wiki:
            enable: true
        projects:
            enable: true
        branches:
          $branche_name:
            dismiss_stale_reviews: true
            enforce_admins: true
            required_approving_review_count: 1
            required_status_checks:
            require_review: true
            strict: true