Skip to content

Commit 006ca3f

Browse files
authored
from prod - from test - from dev - Bump version: 1.0.6 → 1.0.7 into test (#8)Automatically created pull request for release v1.0.7-dev into testbranch. into prod (#9)Automatically created pull request for release v1.0.7-test into prodbranch. into main (#10)
Automatically created pull request for release v1.0.7-prod into main branch.
2 parents 6150f8d + 268078a commit 006ca3f

File tree

14 files changed

+14
-758
lines changed

14 files changed

+14
-758
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.3
2+
current_version = 1.0.7
33
commit = True
44
tag = False
55

.github/ISSUE_TEMPLATE/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
blank_issues_enabled: false
55
contact_links:
6-
- name: GitHub CICD Template Community Support
7-
url: https://github.com./JuanVilla424/github-cicd-template/discussions
6+
- name: GitHub Scripts Community Support
7+
url: https://github.com./JuanVilla424/scripts/discussions
88
about: Please ask and answer questions here.
9-
- name: GitHub CICD Template Security Reports
10-
url: https://juanvilla424.github.io/github-cicd-template/SECURITY
9+
- name: GitHub Scripts Security Reports
10+
url: https://juanvilla424.github.io/scripts/SECURITY
1111
about: Please report security vulnerabilities here.

.github/workflows/python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Format check with Black
2727
run: |
2828
source venv/bin/activate
29-
black --check scripts/
29+
black --check .
3030
- name: Lint with Pylint
3131
run: |
3232
source venv/bin/activate

.github/workflows/version-controller.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,8 @@ jobs:
5959
- name: Add Modules
6060
id: add_modules
6161
run: |
62-
rm -rf scripts
63-
git rm -r --cached scripts
6462
ls -la
65-
git submodule add -b ${{ steps.determine_branch.outputs.current_branch }} https://github.com./JuanVilla424/scripts.git
63+
git submodule add --force -b ${{ steps.determine_branch.outputs.current_branch }} https://github.com./JuanVilla424/scripts.git
6664
# - name: Run Changelog Generator
6765
# id: run_changelog
6866
# run: |

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,5 @@ $RECYCLE.BIN/
132132
*.njsproj
133133
*.sln
134134
*.sw?
135+
136+
scripts

CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We are committed to fostering an open and welcoming environment for all contribu
2323

2424
## 📢 Reporting Misconduct
2525

26-
If you encounter any behavior that violates this code of conduct, please report it by contacting [email@dominio.com](mailto:email@dominio.com). All complaints will be reviewed and handled appropriately.
26+
If you encounter any behavior that violates this code of conduct, please report it by contacting [r6ty5r296it6tl4eg5m.constant214@passinbox.com](mailto:r6ty5r296it6tl4eg5m.constant214@passinbox.com). All complaints will be reviewed and handled appropriately.
2727

2828
## ⚖️ Enforcement
2929

SECURITY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you discover a security vulnerability within this project, please follow thes
2828

2929
1. **Do not create a public issue.** Instead, contact us directly to responsibly disclose the vulnerability.
3030

31-
2. **Email** [juan.villa@quipux.com](mailto:juan.villa@quipux.com) with the following information:
31+
2. **Email** [r6ty5r296it6tl4eg5m.constant214@passinbox.com](mailto:r6ty5r296it6tl4eg5m.constant214@passinbox.com) with the following information:
3232

3333
- A description of the vulnerability.
3434
- Steps to reproduce the issue.

pyproject.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "scripts"
3-
version = "1.0.3"
3+
version = "1.0.7"
44
description = "CICD Core Scripts"
55
authors = ["B <[email protected]>"]
66
license = "Apache 2.0"
@@ -41,6 +41,7 @@ exclude = '''
4141
| \.mypy_cache
4242
| \.tox
4343
| \.venv
44+
| venv
4445
| _build
4546
| buck-out
4647
| build
@@ -67,5 +68,5 @@ ensure_newline_before_comments = true
6768
rcfile = ".pylintrc"
6869

6970
[build-system]
70-
requires = ["poetry-core>=1.0.4"]
71+
requires = ["poetry-core>=1.0.7"]
7172
build-backend = "poetry.core.masonry.api"

scripts/bump_year/main.py

-67
This file was deleted.

scripts/commit_msg_version_bump/main.py

-123
This file was deleted.

scripts/format_yaml/main.py

-101
This file was deleted.

0 commit comments

Comments
 (0)