Skip to content

Commit 07007cc

Browse files
authoredFeb 23, 2021
Increase checkout fetch-depth for codecov SHA (#451)
1 parent 5a3698b commit 07007cc

File tree

4 files changed

+47
-25
lines changed

4 files changed

+47
-25
lines changed
 

‎.craft.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
minVersion: '0.9.0'
1+
minVersion: 0.9.0
22
github:
33
owner: getsentry
44
repo: sentry-symfony
55
changelogPolicy: simple
6-
statusProvider:
6+
statusProvider:
77
name: github
88
artifactProvider:
99
name: none

‎.editorconfig

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
; top-most EditorConfig file
2+
root = true
3+
4+
; Unix-style newlines
5+
[*]
6+
charset = utf-8
7+
end_of_line = LF
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
indent_style = space
11+
indent_size = 4
12+
13+
[*.md]
14+
max_line_length = 80
15+
16+
[*.{yml, yaml}]
17+
indent_size = 2
18+
19+
[COMMIT_EDITMSG]
20+
max_line_length = 0
+23-23
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
name: Prepare Release
22

33
on:
4-
workflow_dispatch:
5-
inputs:
6-
version:
7-
description: Version to release
8-
required: true
9-
force:
10-
description: Force a release even when there are release-blockers (optional)
11-
required: false
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: Version to release
8+
required: true
9+
force:
10+
description: Force a release even when there are release-blockers (optional)
11+
required: false
1212

1313
jobs:
14-
release:
15-
runs-on: ubuntu-latest
16-
name: Release version
17-
steps:
18-
- uses: actions/checkout@v2
19-
with:
20-
token: ${{ secrets.GH_RELEASE_PAT }}
21-
fetch-depth: 0
14+
release:
15+
runs-on: ubuntu-latest
16+
name: Release version
17+
steps:
18+
- uses: actions/checkout@v2
19+
with:
20+
token: ${{ secrets.GH_RELEASE_PAT }}
21+
fetch-depth: 0
2222

23-
- name: Prepare release
24-
uses: getsentry/action-prepare-release@v1
25-
env:
26-
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }}
27-
with:
28-
version: ${{ github.event.inputs.version }}
29-
force: ${{ github.event.inputs.force }}
23+
- name: Prepare release
24+
uses: getsentry/action-prepare-release@v1
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }}
27+
with:
28+
version: ${{ github.event.inputs.version }}
29+
force: ${{ github.event.inputs.force }}

‎.github/workflows/tests.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
name: PHP ${{ matrix.php }} tests (${{ matrix.description }})
4545
steps:
4646
- uses: actions/checkout@v2
47+
with:
48+
fetch-depth: 2
4749
- uses: actions/cache@v2
4850
with:
4951
path: ~/.composer/cache/files

0 commit comments

Comments
 (0)
Please sign in to comment.