Files
appstore-1panel/.github/workflows/push_custom_to_released.yml
T
renovate[bot] 5c66238432 chore(deps): update actions/checkout action to v6 (#3719)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-21 16:49:58 +08:00

24 lines
637 B
YAML

name: Push custom to released
on:
workflow_dispatch:
schedule:
- cron: '2 * * * *'
jobs:
push-branch:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: custom
- name: Push to released branch
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git remote set-url origin https://x-access-token:${{ secrets.GITHUBTOKEN }}@github.com/${{ github.repository }}.git
git push origin custom:released --force