feat: Update argocd applicationset #12
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: Comment | |
on: | |
issue_comment: | |
types: [created, edited] | |
jobs: | |
prow-all: | |
name: Prow for everybody | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run prow | |
uses: jpmcb/prow-github-actions@v1.1.3 | |
with: | |
prow-commands: | | |
/assign | |
/unassign | |
/retitle | |
/area | |
/kind | |
/priority | |
/remove | |
/close | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
prow-write: | |
name: Prow for write access | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check if user has write access | |
uses: lannonbr/repo-permission-check-action@2.0.2 | |
continue-on-error: true | |
with: | |
permission: write | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run prow | |
uses: jpmcb/prow-github-actions@v1.1.3 | |
if: success() | |
with: | |
prow-commands: | | |
/approve | |
/lgtm | |
/reopen | |
/lock | |
/milestone | |
/hold | |
/cc | |
/uncc | |
github-token: "${{ secrets.GITHUB_TOKEN }}" |