Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/finishReleaseCycle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,12 @@ jobs:
steps:
- run: |
gh issue list \
--repo 'Expensify/App' \
--state all \
--label DeployBlockerCash \
--json number \

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NAB
xargs option:

xargs -n1 -P4 -I{} gh issue edit {} --repo 'Expensify/App' --remove-label DeployBlockerCash

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol, you are probably right about this, and it should be a blocker 😬

--jq '.[].number' \
| xargs -L1 --max-procs=4 gh issue edit "$1" --remove-label DeployBlockerCash
| xargs -L1 --max-procs=4 gh issue edit "$1" --repo 'Expensify/App' --remove-label DeployBlockerCash
env:
GITHUB_TOKEN: ${{ github.token }}

Expand Down