chore(argo-cd): Update dependency argoproj/argo-cd to v3.4.1 #165
Workflow file for this run
This file contains hidden or 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: Mark PR Ready When Ready | |
| on: | |
| pull_request_target: | |
| types: [opened, edited, labeled, unlabeled, synchronize] | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| mark-ready: | |
| name: Mark as ready after successful checks | |
| runs-on: ubuntu-latest | |
| permissions: | |
| checks: read # Read CI check results to determine if PR is ready | |
| contents: write # Required by kenyonj/mark-ready-when-ready action | |
| pull-requests: write # Mark the draft PR as ready for review | |
| statuses: read # Read commit statuses to determine if PR is ready | |
| if: | | |
| github.actor != 'dependabot[bot]' && | |
| github.actor != 'argoproj-renovate[bot]' && | |
| contains(github.event.pull_request.labels.*.name, 'Mark Ready When Ready') && | |
| github.event.pull_request.draft == true | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0 | |
| with: | |
| egress-policy: audit | |
| - name: Mark ready when ready | |
| uses: kenyonj/mark-ready-when-ready@0ef6176fc2ddef5bab6cb4ab9517a37f0c153ba4 # v1.2.0 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |