Skip to content

GitHub action to move Glo Boards cards to a column

License

Notifications You must be signed in to change notification settings

Pkanjai/glo-action-move-card

 
 

Repository files navigation

GitHub action to move Glo Boards cards to a column

Use this action to move cards on a Glo Board to a column on the board. The action requires an array of objects with board and card IDs, and the column name as inputs.

Requirements

The action requires an auth token in the form of a PAT that you can create in your GitKraken account. See the Personal Access Tokens page on our support site.

This token should be stored in your GitHub repo secrets (in repo Settings -> Secrets).

Inputs

The cards input is an array of objects that contain the board ID and card ID pairs:

interface ICard {
  boardId: string;
  cardId: string;
}

The column input is the name of a column that already exists in the Glo Board.

Examples

Add a step in your workflow file to perform this action and use the output of the glo-action-parse-links action:

    steps:
    - uses: Axosoft/glo-action-parse-links@v1
      id: glo-parse

    - uses: Axosoft/glo-action-move-card@v1
      with:
        authToken: ${{ secrets.GLO-PAT }}
        cards: '${{ steps.glo-parse.outputs.cards }}'
        column: 'Deployed'
      id: glo-move

About

GitHub action to move Glo Boards cards to a column

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 68.3%
  • TypeScript 31.7%