Skip to content

Commit 1b31f86

Browse files
committed
echo tag date
1 parent defc66d commit 1b31f86

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,14 @@ jobs:
1616
- uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
19-
- name: Get previous release tag
20-
id: get_previous_tag
21-
run: |
22-
PREVIOUS_TAG=$(git describe --tags --abbrev=0)
23-
echo "previous_tag=$PREVIOUS_TAG" >> $GITHUB_OUTPUT
2419

2520
- name: Comment on PRs with issue numbers
2621
env:
2722
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2823
run: |
2924
PREVIOUS_TAG=$(git describe --tags --abbrev=0)
3025
TAG_DATE=$(git log -1 --format="%ci" "$PREVIOUS_TAG" | sed 's/ /T/' | sed 's/ +0000/Z/')
31-
26+
echo "$TAG_DATE"
3227
gh pr list \
3328
--search "is:pr is:merged merged:>=$TAG_DATE OR is:open created:>=$TAG_DATE" \
3429
--json number,body \

0 commit comments

Comments
 (0)