Skip to content

Commit

Permalink
Merge pull request #84 from itpp-labs/fork-fix-conflicts
Browse files Browse the repository at this point in the history
Fork fix conflicts + add v17
  • Loading branch information
yelizariev authored Dec 11, 2023
2 parents 6a8fc51 + f918f27 commit afecef1
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: "3.7.x"
python-version: "3.8.x"
- name: Check Python Version
run: echo "PY=$(python --version --version | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- uses: actions/cache@v1
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ repos:
hooks:
- id: pyupgrade
- repo: https://github.com/PyCQA/isort
rev: 5.5.1
rev: 5.12.0
hooks:
- id: isort
name: isort except __init__.py
Expand Down
1 change: 1 addition & 0 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ branches:
- "14.0"
- "15.0"
- "16.0"
- "17.0"

repos:
#itpp-labs/misc-addons:
Expand Down
1 change: 1 addition & 0 deletions workflow-files/branch2odoo_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

ODOO_VERSIONS = [
"master",
"17.0",
"16.0",
"15.0",
"14.0",
Expand Down
33 changes: 28 additions & 5 deletions workflow-files/generate-repo-readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,39 @@
from github import Github
from plumbum.cmd import cat

BRANCHES = ["16.0", "15.0", "14.0", "13.0", "12.0", "11.0", "10.0", "9.0", "8.0"]
BRANCHES = [
"17.0",
"16.0",
"15.0",
"14.0",
"13.0",
"12.0",
"11.0",
"10.0",
"9.0",
"8.0",
]
REPOS = {
"pos-addons": {"extra_branches": ["7.0"]},
#"mail-addons": {},
#"misc-addons": {"extra_branches": ["7.0"]},
# "mail-addons": {},
# "misc-addons": {"extra_branches": ["7.0"]},
"sync-addons": {},
"access-addons": {},
#"website-addons": {},
# "website-addons": {},
}
ODOO_VERSIONS = ["16.0", "15.0", "14.0", "13.0", "12.0", "11.0", "10.0", "9.0", "8.0", "7.0"]
ODOO_VERSIONS = [
"17.0",
"16.0",
"15.0",
"14.0",
"13.0",
"12.0",
"11.0",
"10.0",
"9.0",
"8.0",
"7.0",
]


def main(token, repository, branch):
Expand Down
2 changes: 1 addition & 1 deletion workflow-files/odoo-module-migrator-mix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
merges:
- oca master
#- oca refs/pull/12345/head # example
- itpp-labs change-odoo-version-only-2
- itpp-labs change-odoo-version-only-2024
target: oca master

0 comments on commit afecef1

Please sign in to comment.