mirror of
https://github.com/earthly/actions-setup.git
synced 2025-01-15 12:08:00 +08:00
25 lines
739 B
YAML
25 lines
739 B
YAML
name: Update Renovate Branch
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
udpate-renovate-branch:
|
|
if: github.event.pull_request.head.repo.full_name == github.repository && startsWith(github.head_ref, 'renovate/') && github.head_ref == 'renovate[bot]'
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
FORCE_COLOR: 1
|
|
EARTHLY_CONVERSION_PARALLELISM: "5"
|
|
EARTHLY_TOKEN: "${{ secrets.EARTHLY_TOKEN }}"
|
|
EARTHLY_INSTALL_ID: "earthly-actions-setup-githubactions"
|
|
steps:
|
|
- uses: earthly/actions/setup-earthly@v1
|
|
with:
|
|
version: v0.8.6
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- name: Update Branch
|
|
run: earthly --ci -P --push +update-dist
|