Skip to content

ActionTrigger

ActionTrigger #6

Workflow file for this run

name: ActionTrigger
env:
REPO_URL: https://github.com/coolsnowwolf/lede
REPO_BRANCH: master
UPLOAD_RELEASE: true
on:
workflow_dispatch:
schedule:
- cron: '0 16 */7 * *'
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: AutoTrigger
uses: bigbugcc/ActionBot@main
- name: Delete workflow runs
uses: bigbugcc/delete-workflow-runs@main
with:
keep_minimum_runs: 1
- name: Remove old Releases
uses: dev-drprasad/[email protected]
if: env.UPLOAD_RELEASE == 'true' && !cancelled()
with:
keep_latest: 18
delete_tags: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}