合并目录

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
Meng Sen
2024-11-28 17:49:08 +08:00
parent e5cda12451
commit a74b89ea86
3 changed files with 5 additions and 7 deletions

View File

@@ -3,10 +3,10 @@ name: Process Apps and Commit Changes
on:
push:
branches:
- appstore
- custom
pull_request:
branches:
- appstore
- custom
workflow_dispatch:
jobs:
@@ -43,8 +43,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git fetch origin appstore
git rebase origin/appstore
git fetch origin custom
git rebase origin/custom
git add appstore dockge || echo "No changes to add"
git diff --cached --quiet && echo "No changes to commit" || git commit -m "Processed apps directory via GitHub Actions"
git push origin appstore
git push origin custom

View File

@@ -2,8 +2,6 @@ name: Push appstore to released
on:
workflow_dispatch:
schedule:
- cron: '0 0 */3 * *'
jobs:
push-branch: