Skip to content

Axosoft/glo-actions

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
October 14, 2019 10:02

GitHub Actions for Glo

The set of GitHub Actions to automatically update your Glo cards. Links to Glo cards from within a Pull Request description or commit message can trigger the following actions:

  • Move a Glo card(s) to any column on your board
  • Create a Glo card
  • Add a label to a Glo card(s)
  • Assign a user to a Glo card(s)
  • Add a comment to a Glo card(s)

Actions

Parse Glo Links Parse your Pull Request description for links to cards

Create Glo Card Create a Glo card and optionally set the description, label, assignee and column

Change Column Change the column of a card(s)

Add Label Add an existing label to a card(s)

Assign User Assign a Glo user to a card(s)

Add Comment Add a comment to a card(s)

Usage

An example workflow to trigger moving a card to the "Deployed" column on a Glo board when a PR is merged.

on: pull_request

name: Glo actions

jobs:
  build:
    name: Glo actions
    runs-on: ubuntu-latest
    steps:
    - uses: Axosoft/[email protected]
      id: glo-parse

    - uses: Axosoft/[email protected]
      with:
        authToken: ${{ secrets.GLO-PAT }}
        cards: '${{ steps.glo-parse.outputs.cards }}'
        column: 'Deployed'
      id: glo-move

Read more at the GitKraken Support site

About

The collection of Github actions for Glo

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published