mirror of
https://github.com/mustbeperfect/definitive-opensource.git
synced 2026-04-17 23:53:26 +02:00
Refactored source/scripts into core/source
This commit is contained in:
2
.github/workflows/format-maintenance.yml
vendored
2
.github/workflows/format-maintenance.yml
vendored
@@ -28,7 +28,7 @@ jobs:
|
||||
run: pip install -r requirements.txt || true
|
||||
|
||||
- name: Run script to check for format errors
|
||||
run: python ./source/scripts/maintenance/json_formatter.py
|
||||
run: python ./core/source/maintenance/json_formatter.py
|
||||
|
||||
- name: Commit and push changes
|
||||
run: |
|
||||
|
||||
4
.github/workflows/generate-readme.yml
vendored
4
.github/workflows/generate-readme.yml
vendored
@@ -4,7 +4,7 @@ name: Generate README
|
||||
on:
|
||||
# push:
|
||||
# paths:
|
||||
# - 'source/data/**'
|
||||
# - 'core/data/**'
|
||||
# - 'source/components/**'
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
@@ -32,7 +32,7 @@ jobs:
|
||||
run: pip install -r requirements.txt || true
|
||||
|
||||
- name: Run script to generate README
|
||||
run: python ./source/scripts/generation/readme_generator.py
|
||||
run: python ./core/source/generation/readme_generator.py
|
||||
|
||||
- name: Commit and push changes
|
||||
run: |
|
||||
|
||||
2
.github/workflows/status-maintenance.yml
vendored
2
.github/workflows/status-maintenance.yml
vendored
@@ -34,7 +34,7 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
python source/scripts/maintenance/status_checker.py
|
||||
python core/source/maintenance/status_checker.py
|
||||
|
||||
- name: Commit changes
|
||||
run: |
|
||||
|
||||
4
.github/workflows/update-stats.yml
vendored
4
.github/workflows/update-stats.yml
vendored
@@ -34,12 +34,12 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
python source/scripts/maintenance/stats_updator.py
|
||||
python core/source/maintenance/stats_updator.py
|
||||
|
||||
- name: Commit changes
|
||||
run: |
|
||||
git config user.name "github-actions[bot]"
|
||||
git config user.email "github-actions[bot]@users.noreply.github.com"
|
||||
git add source/data/dynamic/applications.json
|
||||
git add core/data/dynamic/applications.json
|
||||
git commit -m "Auto-update GitHub metadata" || echo "No changes to commit"
|
||||
git push
|
||||
|
||||
Reference in New Issue
Block a user