File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 7
7
pull_request :
8
8
branches :
9
9
- master
10
+ types :
11
+ - opened
12
+ - synchronize
13
+ - reopened
14
+ - ready_for_review
15
+ - labeled
16
+ - unlabeled
10
17
11
18
jobs :
19
+ changelog :
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - id : read-version
23
+ run : |
24
+ echo "::set-output name=VERSION::$(cat ./lib/ice_cube/version.rb | grep VERSION | awk '{ print $3 }' | sed -e 's/\"//g')"
25
+ - uses : actions/checkout@v2
26
+ -
uses :
dangoslen/[email protected]
27
+ with :
28
+ skipLabels : ' skip-changelog'
29
+ expectedLatestVersion : ${{ steps.read-version.outputs.VERSION }}
12
30
lint :
13
31
runs-on : ubuntu-latest
14
32
steps :
19
37
bundler-cache : true
20
38
- run : bundle exec standardrb
21
39
test :
22
- needs : lint
40
+ needs :
41
+ - changelog
42
+ - lint
23
43
strategy :
24
44
matrix :
25
45
rails : ['5.2', '6.0.4', '6.1']
You can’t perform that action at this time.
0 commit comments