We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent defc66d commit 1b31f86Copy full SHA for 1b31f86
.github/workflows/test.yml
@@ -16,19 +16,14 @@ jobs:
16
- uses: actions/checkout@v4
17
with:
18
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
24
25
- name: Comment on PRs with issue numbers
26
env:
27
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28
run: |
29
PREVIOUS_TAG=$(git describe --tags --abbrev=0)
30
TAG_DATE=$(git log -1 --format="%ci" "$PREVIOUS_TAG" | sed 's/ /T/' | sed 's/ +0000/Z/')
31
-
+ echo "$TAG_DATE"
32
gh pr list \
33
--search "is:pr is:merged merged:>=$TAG_DATE OR is:open created:>=$TAG_DATE" \
34
--json number,body \
0 commit comments