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 8eb1d9a commit 64831a1Copy full SHA for 64831a1
.github/workflows/rust.yml
@@ -18,12 +18,13 @@ jobs:
18
skip: ${{ steps.check_changes.outputs.skip }}
19
steps:
20
- name: Checkout code
21
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
22
+ with:
23
+ fetch-depth: 0
24
25
- name: Check for changes
26
id: check_changes
27
run: |
- git fetch --depth=1 origin +refs/heads/*:refs/remotes/origin/*
28
if [ "$(git log $(git describe --tags --abbrev=0)..HEAD --oneline)" = "" ]; then
29
echo "skip=true" >> "$GITHUB_OUTPUT"
30
fi
0 commit comments