branch master updated (b488f2bb -> 2627788d)
This is an automated email from the git hooks/post-receive script. New change to branch master in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git omits b488f2bb Permettre le lancement des pipelines pages/cloudpages via l'interface web new 2627788d Permettre le lancement des pipelines pages/cloudpages via l'interface web This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (b488f2bb) \ N -- N -- N refs/heads/master (2627788d) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 2627788d29a575bd7e88cf9988275ee2ba3bae24 Author: Andrés Maldonado <maldonado@codelutin.com> Date: Wed May 18 14:33:48 2022 +0200 Permettre le lancement des pipelines pages/cloudpages via l'interface web Summary of changes: .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch master in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git commit 2627788d29a575bd7e88cf9988275ee2ba3bae24 Author: Andrés Maldonado <maldonado@codelutin.com> Date: Wed May 18 14:33:48 2022 +0200 Permettre le lancement des pipelines pages/cloudpages via l'interface web --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dc8cbf7d..a7d8fc81 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -67,7 +67,7 @@ pages: - mvn clean install site - mv target/site public rules: - - if: '$CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == "master"' + - if: '$CI_PIPELINE_SOURCE =~ /^(?:push|web)$/ && $CI_COMMIT_BRANCH == "master"' changes: - src/site/* when: always @@ -75,7 +75,7 @@ pages: cloudpages-build-docker: extends: .cloudpages-build-docker rules: - - if: '$CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == "master"' + - if: '$CI_PIPELINE_SOURCE =~ /^(?:push|web)$/ && $CI_COMMIT_BRANCH == "master"' changes: - src/site/* when: always @@ -83,7 +83,7 @@ cloudpages-build-docker: cloudpages-deploy: extends: .cloudpages-deploy rules: - - if: '$CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == "master"' + - if: '$CI_PIPELINE_SOURCE =~ /^(?:push|web)$/ && $CI_COMMIT_BRANCH == "master"' changes: - src/site/* when: always -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm