File tree 4 files changed +47
-25
lines changed
4 files changed +47
-25
lines changed Original file line number Diff line number Diff line change 1
- minVersion : ' 0.9.0'
1
+ minVersion : 0.9.0
2
2
github :
3
3
owner : getsentry
4
4
repo : sentry-symfony
5
5
changelogPolicy : simple
6
- statusProvider :
6
+ statusProvider :
7
7
name : github
8
8
artifactProvider :
9
9
name : none
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
name : Prepare Release
2
2
3
3
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
12
12
13
13
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
22
22
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 }}
Original file line number Diff line number Diff line change 44
44
name : PHP ${{ matrix.php }} tests (${{ matrix.description }})
45
45
steps :
46
46
- uses : actions/checkout@v2
47
+ with :
48
+ fetch-depth : 2
47
49
- uses : actions/cache@v2
48
50
with :
49
51
path : ~/.composer/cache/files
You can’t perform that action at this time.
0 commit comments