mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-07-30 12:02:44 +00:00
Run the E2E test on kind / get-go-version (push) Failing after 1m0s
Run the E2E test on kind / build (push) Has been skipped
Run the E2E test on kind / setup-test-matrix (push) Successful in 5s
Run the E2E test on kind / run-e2e-test (push) Has been skipped
Main CI / get-go-version (push) Successful in 15s
Main CI / Build (push) Failing after 39s
Close stale issues and PRs / stale (push) Successful in 8s
Trivy Nightly Scan / Trivy nightly scan (velero, main) (push) Failing after 1m40s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-aws, main) (push) Failing after 1m42s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-gcp, main) (push) Failing after 1m43s
Trivy Nightly Scan / Trivy nightly scan (velero-plugin-for-microsoft-azure, main) (push) Failing after 1m31s
Fix prow-action workflow permissions for issue commands
34 lines
780 B
YAML
34 lines
780 B
YAML
# Adds support for prow-like commands
|
|
# Uses .github/labels.yaml to define areas and kinds
|
|
name: "Prow github actions"
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
execute:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: jpmcb/prow-github-actions@v1.1.3
|
|
with:
|
|
# TODO: before allowing the /lgtm command, see if we can block merging if changelog labels are missing.
|
|
prow-commands: |
|
|
/approve
|
|
/area
|
|
/assign
|
|
/cc
|
|
/close
|
|
/hold
|
|
/kind
|
|
/milestone
|
|
/retitle
|
|
/remove
|
|
/reopen
|
|
/uncc
|
|
/unassign
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|