updatecli #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: updatecli | |
on: | |
release: null | |
workflow_dispatch: null | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
# Run every day | |
- cron: "0 0 * * *" | |
permissions: {} | |
jobs: | |
updatecli: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: "Checkout" | |
uses: "actions/[email protected]" | |
- name: "Setup updatecli" | |
uses: "updatecli/updatecli-action@v2" | |
- name: "Run updatecli in dryrun" | |
run: "updatecli compose diff" | |
env: | |
GITHUB_ACTOR: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: "tibdex/[email protected]" | |
id: generate_token | |
if: github.ref == 'refs/heads/main' | |
with: | |
app_id: ${{ secrets.LOIS_BOT_APP_ID }} | |
private_key: ${{ secrets.LOIS_BOT_PRIVATE_KEY }} | |
- name: "Run updatecli" | |
if: github.ref == 'refs/heads/main' | |
run: "updatecli compose apply" | |
env: | |
GITHUB_ACTOR: lois-bot | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} |