diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4db8edb21..78067df92 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,11 +1,9 @@ name: Lint -on: - push: - pull_request: - types: [opened, synchronize, reopened] +on: [push, pull_request] jobs: lint: + if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository name: Lint Check runs-on: ubuntu-latest steps: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 89bb0bb55..0e2de55b1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,8 +1,5 @@ name: Main CI -on: - push: - pull_request: - types: [opened, synchronize, reopened] +on: [push, pull_request] jobs: config: @@ -11,5 +8,9 @@ jobs: uses: ./.github/workflows/locales.yml release: uses: ./.github/workflows/release.yml + needs: [config, locales] + if: always() docker: + if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository) && always() uses: ./.github/workflows/docker.yml + needs: [config, locales] diff --git a/.github/workflows/sentry.yml b/.github/workflows/sentry.yml index 7f783e5e1..0621220c0 100644 --- a/.github/workflows/sentry.yml +++ b/.github/workflows/sentry.yml @@ -1,7 +1,7 @@ name: Sentry on: release: - types: [published] + types: [created, published] jobs: sentry: diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e86a7f02..d944a0f40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## [1.29.6](https://github.com/WatWowMap/ReactMap/compare/v1.29.5...v1.29.6) (2024-02-06) + + +### Bug Fixes + +* run even when prev is skipped ([78c1404](https://github.com/WatWowMap/ReactMap/commit/78c14040007a33180f5fddf270aa155136ba87c2)) + +## [1.29.5](https://github.com/WatWowMap/ReactMap/compare/v1.29.4...v1.29.5) (2024-02-06) + + +### Bug Fixes + +* needs both ([e4b7cec](https://github.com/WatWowMap/ReactMap/commit/e4b7cec18ce2b41b04c5813b7a8ece23a3bf5510)) + +## [1.29.4](https://github.com/WatWowMap/ReactMap/compare/v1.29.3...v1.29.4) (2024-02-06) + + +### Bug Fixes + +* needs & attempt to not run double ([abcaaab](https://github.com/WatWowMap/ReactMap/commit/abcaaab5d65d68b98570727f21879e31f81f622e)) + ## [1.29.3](https://github.com/WatWowMap/ReactMap/compare/v1.29.2...v1.29.3) (2024-02-06) ### Bug Fixes diff --git a/package.json b/package.json index 9fc5c9255..85e160f72 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reactmap", - "version": "1.29.3", + "version": "1.29.6", "private": true, "description": "React based frontend map.", "license": "MIT",