Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/updatecli.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Updatecli Compose

on:
# push:
# branches:
# - main
# schedule:
# - cron: "*/15 * * * *"
workflow_dispatch:
# push:
# branches:
# - main
# schedule:
# - cron: "*/15 * * * *"
workflow_dispatch: null
permissions:
contents: "write"
pull-requests: "write"
Expand All @@ -22,24 +22,24 @@ jobs:
runs-on:
- ubuntu-latest
steps:
- uses: tibdex/[email protected]
- uses: "tibdex/[email protected].0"
id: own_token
with:
app_id: ${{ secrets.GITHUB_APP_ID }}
private_key: ${{ secrets.GITHUB_APP_PRIVATE_KEY }}
installation_retrieval_mode: organization
installation_retrieval_payload: ${{ env.UPDATECLI_ORG }}
- uses: tibdex/[email protected]
- uses: "tibdex/[email protected].0"
id: source_token
with:
app_id: ${{ secrets.GITHUB_APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
installation_retrieval_mode: organization
installation_retrieval_payload: ${{ env.OTHER_GITHUB_ORG }}
- name: Checkout the repository
uses: actions/checkout@v4
uses: "actions/checkout@v4.2.2"
- name: Install Updatecli in the runner
uses: updatecli/updatecli-action@v2
uses: "updatecli/updatecli-action@v2"
- name: Run Updatecli in Dry Run mode
run: "updatecli compose diff"
env:
Expand Down