chore(deps): update dependency cli/cli to v2.49.1 #751
Workflow file for this run
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: Pull Request | |
on: pull_request | |
permissions: {} | |
jobs: | |
add-label: | |
permissions: | |
pull-requests: write | |
uses: ./.github/workflows/wc-auto-add-label.yaml | |
with: | |
app_id: "op://Github/uhto3hzapjcxicwm664wvh4zu4/AppID" | |
app_secret: "op://Github/uhto3hzapjcxicwm664wvh4zu4/private_key" | |
secrets: | |
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} | |
path-filter: | |
outputs: | |
ghalint: ${{steps.changes.outputs.ghalint}} | |
renovate-config-validator: ${{steps.changes.outputs.renovate-config-validator}} | |
update-aqua-checksums: ${{steps.changes.outputs.update-aqua-checksums}} | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: changes | |
with: | |
filters: | | |
ghalint: | |
- .github/workflows/*.yaml | |
- aqua/aqua.yaml | |
- aqua/imports/ci/ghalint.yaml | |
- ghalint.yaml | |
renovate-config-validator: | |
- renovate.json | |
- .github/workflows/pull_request.yaml | |
- .github/workflows/wc-renovate-config-validator.yaml | |
update-aqua-checksums: | |
- aqua/aqua.yaml | |
- aqua/imports/*/*.yaml | |
- aqua/aqua-checksums.json | |
- .github/workflows/pull_request.yaml | |
- .github/workflows/wc-update-aqua-checksums.yaml | |
ghalint: | |
needs: path-filter | |
if: needs.path-filter.outputs.ghalint == 'true' | |
uses: ./.github/workflows/wc-ghalint.yaml | |
permissions: {} | |
renovate-config-validator: | |
needs: path-filter | |
if: needs.path-filter.outputs.renovate-config-validator == 'true' | |
uses: ./.github/workflows/wc-renovate-config-validator.yaml | |
permissions: | |
contents: read | |
update-aqua-checksums: | |
needs: path-filter | |
if: needs.path-filter.outputs.update-aqua-checksums == 'true' | |
uses: ./.github/workflows/wc-update-aqua-checksums.yaml | |
permissions: | |
contents: read | |
with: | |
aqua_version: v2.27.3 | |
prune: true | |
app_id: "op://Github/uhto3hzapjcxicwm664wvh4zu4/AppID" | |
app_secret: "op://Github/uhto3hzapjcxicwm664wvh4zu4/private_key" | |
secrets: | |
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} | |
status-check: | |
needs: | |
- ghalint | |
- renovate-config-validator | |
- update-aqua-checksums | |
uses: ./.github/workflows/wc-status-check.yaml | |
permissions: {} | |
if: failure() | |
enable-automerge: | |
needs: | |
- status-check | |
# "! failure() && ! cancelled()" is required. success() returns false if dependent jobs are skipped. | |
# https://github.com/community/community/discussions/45058 | |
# By default success() is used so we have to override success() by "! failure() && ! cancelled()" | |
if: | | |
! failure() && ! cancelled() && github.event.pull_request.user.login == 'renovate[bot]' && contains(github.event.pull_request.body, ' **Automerge**: Enabled.') | |
uses: ./.github/workflows/wc-enable-auto-merge.yaml | |
permissions: {} | |
with: | |
app_id: "op://Github/uhto3hzapjcxicwm664wvh4zu4/AppID" | |
app_secret: "op://Github/uhto3hzapjcxicwm664wvh4zu4/private_key" | |
secrets: | |
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} |