Skip to content

.github/workflows/lp-build.yaml #5

.github/workflows/lp-build.yaml

.github/workflows/lp-build.yaml #5

Workflow file for this run

name: Trigger a Launchpad build on edge
on:
workflow_dispatch: # Allow manual run
workflow_call: # Allow calling from another workflow
schedule:
- cron: "0 */6 * * *" # Every 6 hours
permissions:
contents: write
packages: write
issues: write
jobs:
trigger-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git switch -c edge origin/edge
date > .last_sync
git config user.name 'Automatic sync trigger bot'
git config user.email 'bots+ruff-sync-trigger@port0.dev'
git add .last_sync
git commit -m 'Trigger a new LP build'
git push