Skip to content

Updatecli

Updatecli #7561

Workflow file for this run

name: Updatecli
on:
# Allow to manually trigger Updatecli
workflow_dispatch:
# Trigger Updatecli on main branch changes
# To rebase existing PR
push:
branches: [main]
# Trigger Updatecli pullrequest to test potential changes
pull_request:
branches: [main]
# Periodically checks update
schedule:
# Run every hour
- cron: "0 * * * *"
jobs:
updatecli:
name: Run Updatecli
runs-on: ubuntu-latest
permissions:
contents: write # for updatecli to update the repository
pull-requests: write # for updatecli to create a PR
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Install Updatecli in the runner
uses: updatecli/updatecli-action@5dfc616e57b07d2302c3f37e5b72a4ead82dbbf8 # v3.4.0
- name: Run Updatecli (dryrun)
if: github.ref != 'refs/heads/main'
env:
# Until this repository is under the rancher-sandbox GitHub organisation
# It's easier to use the default GITHUB_TOKEN but ultimately
# it's gonna be better to use a GitHub App token
UPDATECLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
UPDATECLI_GITHUB_OWNER: ${{ github.repository_owner }}
run: "updatecli compose diff --file updatecli/updatecli-compose.yaml"
- name: Run Updatecli
if: github.ref == 'refs/heads/main'
env:
# Until this repository is under the rancher-sandbox GitHub organisation
# It's easier to use the default GITHUB_TOKEN but ultimately
# it's gonna be better to use a GitHub App token
UPDATECLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
UPDATECLI_GITHUB_OWNER: ${{ github.repository_owner }}
run: "updatecli compose apply --file updatecli/updatecli-compose.yaml"