Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ineshbose/project-card-action
GitHub Action for moving issue cards on Project Boards across columns.
https://github.com/ineshbose/project-card-action
actions github-actions github-project-board github-projects project-board
Last synced: 11 days ago
JSON representation
GitHub Action for moving issue cards on Project Boards across columns.
- Host: GitHub
- URL: https://github.com/ineshbose/project-card-action
- Owner: ineshbose
- License: mit
- Created: 2021-11-14T17:49:07.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-15T12:38:15.000Z (about 3 years ago)
- Last Synced: 2024-05-01T16:49:15.539Z (7 months ago)
- Topics: actions, github-actions, github-project-board, github-projects, project-board
- Language: TypeScript
- Homepage:
- Size: 262 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Project Card Action
A [GitHub Action](https://help.github.com/en/actions) that moves *issue* cards in your [project boards](https://docs.github.com/en/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards), without having to specify the board and column names, from a workflow. **This project is in BETA. Please report bugs if encountered.**
## Usage
```yml
name: Move cardon:
# refer https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#issues
issues:
types: [assigned]
# refer https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#issue_comment
issue_comment:
types: [created]jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: ineshbose/project-card-action@v1
with:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
TARGET_COLUMN: 'Review'
```
Argument
Required
Default
Description
GH_TOKEN
Yes
GitHub Token required to make changes. You can use ${{ secrets.GITHUB_TOKEN }}.
ISSUE_NUMBER
Yes
The issue number that the card is connected to.
PROJECT_NAME
No
The project/board where the card should be. The action searches through all projects/boards otherwise.
SOURCE_COLUMN
No
The column where the card should be. The action searches through all columns otherwise.
TARGET_COLUMN
Yes
The column where the card should be moved.
CARD_POSITION
No
bottom
The position of the card in the target column.