File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,11 @@ jobs:
5050 run : |
5151 api() { gh api -H 'accept: application/vnd.github.inertia-preview+json' "$@"; }
5252 api-write() { [[ $GITHUB_REF == *-* ]] && echo "skipping: api $*" || api "$@"; }
53- cards=$(api projects/columns/$PENDING_COLUMN/cards | jq ".[].id")
53+ cards=$(api --paginate projects/columns/$PENDING_COLUMN/cards | jq ".[].id")
5454 for card in $cards; do
55- api-write projects/columns/cards/$card/moves -f position=top -F column_id=$DONE_COLUMN
55+ api-write --silent projects/columns/cards/$card/moves -f position=top -F column_id=$DONE_COLUMN
5656 done
57+ echo "moved ${#cards[@]} cards to the Done column"
5758
5859 - name : Install packaging dependencies
5960 run : sudo apt-get install -y createrepo rpm reprepro
You can’t perform that action at this time.
0 commit comments