ArgoCD App Updates #72
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: "ArgoCD App Updates" | |
on: | |
schedule: | |
- cron: '0 7 * * SAT' | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
- name: Check updates for ArgoCD Apps | |
uses: ironashram/argocd-apps-action@v1.3.2 | |
with: | |
skip_prerelease: true | |
target_branch: main | |
create_pr: true | |
apps_folder: apps/templates | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }} |