Skip to content

Commit 99ec377

Browse files
authored
Update pr-in-progress.yml
1 parent 37d9137 commit 99ec377

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/workflows/pr-in-progress.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
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
@@ -36,7 +35,6 @@ jobs:
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
@@ -48,7 +46,6 @@ jobs:
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
@@ -60,7 +57,6 @@ jobs:
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

0 commit comments

Comments
 (0)