Updatecli Dependency Updates #6
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 Dependency Updates | |
"on": | |
schedule: | |
- cron: 0 15 * * 1 # Monday @ 3pm UTC | |
workflow_dispatch: {} | |
permissions: {} | |
jobs: | |
updatecli: | |
name: Updatecli Dependency Updates | |
runs-on: ubuntu-latest | |
permissions: | |
# required to write to the repo | |
contents: write | |
# required to open a pr with updatecli changes | |
pull-requests: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: updatecli-minor-apply | |
uses: prefecthq/actions-updatecli-apply@main | |
with: | |
manifest-path: .github/updatecli/manifest.yaml | |
run-helm-docs: true | |
run-type: minor |