Skip to content

Github Action to deploy Zendesk Apps using ZCLI to multiple instances.

Notifications You must be signed in to change notification settings

eteg/zcli-bulk-action

Repository files navigation

ZCLI Bulk Action

Github Action to deploy Zendesk Apps to multiple instances.

📋 Table of contents

📦 Installation

Install the dependencies

yarn install

🔁 Change the Action

The action.yml defines the inputs and output for your action.

Update the action.yml and index.js if you want to make changes to the action.

⌨️ Change the Code

Most toolkit and CI/CD operations involve async operations so the action is run in an async function.

const core = require('@actions/core');
...

async function run() {
  try {
      ...
  }
  catch (error) {
    core.setFailed(error.message);
  }
}

run()

🚀 Usage

You can now consume the action by referencing the release branch, e.g.: @v1

uses: eteg/zcli-bulk-action@v1

This is a complete example of the action usage for development purposes.:

name: Bulk update Zendesk instances

on:
  # Enables manual invocation of the workflow from the github action user interface
  workflow_dispatch:
  pull_request:
    branches:
      - main
      - develop
    types: [closed]

jobs:
  deploy:
    runs-on: ubuntu-latest
    environment: ${{github.ref_name == 'main' && 'production' || 'staging'}}

    strategy:
      matrix:
        node-version: [16.x]

    env:
      CUSTOMERS: ${{ secrets.CUSTOMERS }}

    steps:
      - name: Checkout the code
        uses: actions/checkout@v3

      - name: Setup node version from .node-version file
        uses: actions/setup-node@v3
        id: setup-node
        with:
          node-version-file: ".node-version"
          cache: "yarn"

      - name: Setup ZCLI Bulk
        uses: eteg/zcli-bulk-action@v1
        with:
          PATH: "dist"

For a while we dont have a way or API to get the list of instances where eZVoice is installed, so we need to set the list of instances in the Settings > Environments in eZVoice repository like:

Note: The CUSTOMERS secret is a JSON string (stringify).

{
  "customers": [
    {
      "id":"0",
      "customer":"d3v",
      "environment": {
        "staging": {
          "subdomain": "",
          "email": "",
          "api_token": "",
          "app_id": 0,
          "app_location": "ticket_sidebar",
          "autoUpdate": true
        },
        "production": {
          "subdomain": "",
          "email": "",
          "api_token": "",
          "app_id": 0,
          "app_location": "ticket_sidebar",
          "autoUpdate": true
        }
     }
    }
  ]
}

✉️ Package for distribution

GitHub Actions will run the entry point from the action.yml. Packaging assembles the code into one file that can be checked in to Git, enabling fast and reliable execution and preventing the need to check in node_modules.

Actions are run from GitHub repos. Packaging the action will create a packaged action in the dist folder.

Run prepare for distribution

yarn prepare

Since the packaged index.js is run from the dist folder.

git add dist

🤯 Create a release branch

Users shouldn't consume the action from master since that would be latest code and actions can break compatibility between major versions.

Checkin to the v1 release branch

git checkout -b v1
git commit -a -m "v1 release"
git push origin v1

Your action is now published! 🚀

📜 License

This project have no license. You're under no obligation to choose a license. However, without a license, the default copyright laws apply, meaning that you retain all rights to your source code and no one may reproduce, distribute, or create derivative works from your work. Github licensing page.

About

Github Action to deploy Zendesk Apps using ZCLI to multiple instances.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published