File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 2424 env :
2525 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2626 run : |
27- gh auth login --with-token <<< "${{ secrets.GITHUB_TOKEN }}"
2827 gh pr view ${{ github.event.pull_request.number }} --json projectCards --jq '.projectCards[] | select(.name == "To Do") | .id' > card_id.txt
2928 CARD_ID=$(cat card_id.txt)
3029 if [ -n "$CARD_ID" ]; then
3635 env :
3736 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3837 run : |
39- gh auth login --with-token <<< "${{ secrets.GITHUB_TOKEN }}"
4038 gh pr view ${{ github.event.pull_request.number }} --json projectCards --jq '.projectCards[] | select(.name == "In Progress") | .id' > card_id.txt
4139 CARD_ID=$(cat card_id.txt)
4240 if [ -n "$CARD_ID" ]; then
4846 env :
4947 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5048 run : |
51- gh auth login --with-token <<< "${{ secrets.GITHUB_TOKEN }}"
5249 gh pr view ${{ github.event.pull_request.number }} --json projectCards --jq '.projectCards[] | select(.name == "Review") | .id' > card_id.txt
5350 CARD_ID=$(cat card_id.txt)
5451 if [ -n "$CARD_ID" ]; then
6057 env :
6158 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
6259 run : |
63- gh auth login --with-token <<< "${{ secrets.GITHUB_TOKEN }}"
6460 gh pr view ${{ github.event.pull_request.number }} --json projectCards --jq '.projectCards[] | select(.name == "Done") | .id' > card_id.txt
6561 CARD_ID=$(cat card_id.txt)
6662 if [ -n "$CARD_ID" ]; then
You can’t perform that action at this time.
0 commit comments