From 2afa84550c2cfcfbe344118672d70cb406b9f13e Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Sun, 2 Nov 2025 12:23:41 -0300 Subject: [PATCH 1/2] feature: agrego bitbucket-pipelines.yml y requirements.txt --- bitbucket-pipelines.yml | 17 +++++++++++++++++ requirements.txt | 5 +++++ 2 files changed, 22 insertions(+) create mode 100644 bitbucket-pipelines.yml create mode 100644 requirements.txt diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml new file mode 100644 index 0000000..9aa74a8 --- /dev/null +++ b/bitbucket-pipelines.yml @@ -0,0 +1,17 @@ +image: python:3.12-slim-bookworm +pipelines: + branches: + 'dev': + - step: + name: "Tag dev" + script: + - cd $BITBUCKET_CLONE_DIR + - pip install -r requirements.txt + - ./git-flow tag $BEARER + 'main': + - step: + name: "Tag main" + script: + - cd $BITBUCKET_CLONE_DIR + - pip install -r requirements.txt + - ./git-flow tag $BEARER diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..80e01dd --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +certifi==2025.10.5 +charset-normalizer==3.4.4 +idna==3.11 +requests==2.32.5 +urllib3==2.5.0 From 9edb5e6668620fafd16b281808e37d2d1835bdb9 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Sun, 2 Nov 2025 12:23:48 -0300 Subject: [PATCH 2/2] Updated CHANGELOG.md --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a8a794..bfe4f63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## Jonathan Teran Carballo (jonathan.nerat@gmail.com) - 02/11/2025 12:23 + +**feature/agregar-bitbucket-pipelines.yml** +- **feature**: agrego bitbucket-pipelines.yml y requirements.txt (2afa845) + - bitbucket-pipelines.yml (A) + - requirements.txt (A) + +--- + ## Jonathan Teran Carballo (jonathan.nerat@gmail.com) - 02/11/2025 12:13 **refactor/git-commands-lib**