-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from MTES-MCT/close-status
Back & Front - remove isStart for status action
- Loading branch information
Showing
21 changed files
with
771 additions
and
886 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
name: "[Release] Mirror push to gitlab" | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
# push: | ||
# branches: [ "main" ] | ||
release: | ||
types: [ published ] | ||
workflow_dispatch: | ||
|
@@ -19,20 +19,20 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
# - name: Get frontend version | ||
# uses: avides/[email protected] | ||
# id: frontend_version | ||
# with: | ||
# token: ${{ secrets.GITHUB_TOKEN }} | ||
# file-to-check: frontend/package.json | ||
# only-return-version: true | ||
# | ||
# - name: Upload Frontend sourcemaps | ||
# uses: ./.github/actions/upload-sourcemaps | ||
# with: | ||
# SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | ||
# VERSION: ${{ steps.frontend_version.outputs.version }} | ||
#test | ||
- name: Get frontend version | ||
uses: avides/[email protected] | ||
id: frontend_version | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
file-to-check: frontend/package.json | ||
only-return-version: true | ||
|
||
- name: Upload Frontend sourcemaps | ||
uses: ./.github/actions/upload-sourcemaps | ||
with: | ||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | ||
VERSION: ${{ steps.frontend_version.outputs.version }} | ||
|
||
- uses: yesolutions/mirror-action@master | ||
with: | ||
REMOTE: https://gitlab-sml.din.developpement-durable.gouv.fr/rapportnav-v2/rapportnav_v2.git | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
backend/src/main/resources/db/migration/V1.2024.01.30.11.54__status_drop_isstart.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
DO | ||
$$ | ||
BEGIN | ||
|
||
-- Remove the isStart column from the mission_action_status table | ||
ALTER TABLE mission_action_status | ||
DROP COLUMN is_start; | ||
|
||
END | ||
$$; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.