[INIT] 19.0: CI config

This commit is contained in:
Luc De Meyer
2026-03-01 20:52:57 +01:00
commit 6fdeb820b1
16 changed files with 967 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
name: Update addons table after merge
on:
push:
branches:
- "19.0"
paths-ignore:
- "README.md"
permissions:
contents: write
jobs:
gen-addons-table:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install pre-commit
run: pip install pre-commit
- name: Run the manual hook to (re)generate the addons table
run: pre-commit run -a --hook-stage manual oca-gen-addons-table
continue-on-error: true
- name: Commit & push if changed
env:
PUSH_URL: https://x-access-token:${{ secrets.PRIVATE_TOKEN }}@github.com/${{ github.repository }}.git
run: |
if ! git diff --quiet; then
git config user.name "noviat-ci-bot"
git config user.email "bot+ci@noviat.com"
git add -A
git commit -m "update addons table"
git remote set-url origin "$PUSH_URL"
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git push origin HEAD:19.0
fi