Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tasshi-me/gh-iteration

GitHub CLI extension to operate iteration field of project
https://github.com/tasshi-me/gh-iteration

gh-extension

Last synced: 24 days ago
JSON representation

GitHub CLI extension to operate iteration field of project

Awesome Lists containing this project

README

        

# gh iteration

## Documentation

https://tasshi-me.github.io/gh-iteration/

## Installation

```shell
gh extension install tasshi-me/gh-iteration
$ gh auth refresh -s project
```

## Example

```shell
# Assign current sprint to all in progress tasks

gh iteration items-edit \
--owner "myOrg" \
--project "123" \
--field "Sprint" \
--query "(Item.Type == \"ISSUE\") && (
(Item.Fields.Status.Name endsWith \"In progress\")
|| (Item.Fields.Status.Name endsWith \"In review\")
|| (Item.Fields.Status.Name endsWith \"In testing\")
|| (Item.Fields.Status.Name endsWith \"In AC Check\"))" \
--current
```

## License

- [MIT](./LICENSE)