Generate common files across taipy repos
@@ -0,0 +1,20 @@
+group:
+ repos: |
+ Avaiga/taipy-config
+ Avaiga/taipy-core
+ Avaiga/taipy-gui
+ Avaiga/taipy-rest
+
+ files:
+ - .flake8
+ - .gitattributes
+ - .license-header
+ - CODE_OF_CONDUCT.md
+ - CONTRIBUTING.md
+ - LICENSE
+ - mypy.ini
+ - pyproject.toml
+ - src/taipy/__init__.py
+ # - .isort.cfg
+ # - src/__init__.py
@@ -0,0 +1,17 @@
+name: Sync Files
+on:
+ push:
+ branches:
+ - develop
+ workflow_dispatch:
+jobs:
+ sync:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Repository
+ uses: actions/checkout@develop
+ - name: Run GitHub File Sync
+ uses: BetaHuhn/repo-file-sync-action@v1
+ with:
+ GH_PAT: ${{ secrets.GH_PAT }}