Skip to content

Commit e8add7a

Browse files
e-halinenahjyrkia
andauthored
Production release v1.1.0 (#142)
* 25226: react-map-gl switched to maplibre-gl (#130) * react-map-gl switched to maplibre-gl * lint fixes * more lint errors fixed * zoneSymbols bit more responsive * build and style fix * yarn.lock update * AB#28974: Represent zone symbols correctly in UI in regards to prints * zone symbol sizing * lint fixes * resize symbols on all zoom events * Bump hsl-map-style version to 1.1.3 (#133) * AB#35806: Fix crashing coordinate input fields (#134) * AB#48634: Bump hsl-map-style to 1.2.0 (#135) * WIP: AB#34322: Fix marker glitching when dragging stops (#136) * AB#53258: Fix map generator appearing in google search results (#138) * AB#56575: Add version numbering and check against prod (#140) * AB#56568: Change license to AGPL-3.0-only (#141) * React updates (#132) * react updates * lint fixes * v1.1.0 --------- Co-authored-by: Anton Jyrkiäinen <anton.jyrkiainen@helsinki.fi>
1 parent a13e29c commit e8add7a

6 files changed

Lines changed: 257 additions & 49 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Check version numbering is updated prior to merging
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
check_version:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
- name: Check if version has been updated
15+
id: check
16+
uses: EndBug/version-check@v2
17+
- name: Fail if version is not changed prior to merge
18+
if: steps.check.outputs.changed == 'false'
19+
uses: actions/github-script@v7
20+
with:
21+
script: |
22+
core.setFailed('No version number change found. Run `yarn version`-command to upgrade version before merge can be completed.')

0 commit comments

Comments
 (0)