We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c96ee04 commit 58477f1Copy full SHA for 58477f1
1 file changed
.github/workflows/pr-check.yaml
@@ -37,6 +37,15 @@ jobs:
37
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
steps:
39
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
40
+ with:
41
+ fetch-depth: 5 # must be at least the number of commits in the PR
42
+
43
+ - name: fetch year's commits
44
+ run: |
45
+ git fetch --shallow-since=2025-12-30
46
+ git log | tail -n 100
47
+ git log -1 --format="%ad" -- packages/channels/src/channels.ts
48
+ git log --format=format:COMMIT:%ad --date=format:%Y --name-only --diff-filter=ACDMRT packages/channels/src/channels.ts
49
50
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
51
name: Install pnpm
0 commit comments