pre_commit_resolve.yaml 754 B

123456789101112131415161718192021222324
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. name: 'Delete stale suggestions'
  5. on:
  6. push:
  7. jobs:
  8. delete-stale-suggestions:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - name: Harden Runner
  12. uses: step-security/harden-runner@f086349bfa2bd1361f7909c78558e816508cdc10 # v2.8.0
  13. with:
  14. egress-policy: audit
  15. - name: Delete stale suggestions
  16. uses: Ardiannn08/resolve-outdated-comment@3b3cf4b2651a84fac2d6a94c2aeca9ac7c05ac5f # v1.3
  17. with:
  18. token: ${{ secrets.CARBON_INFRA_BOT_FOR_REVIEWDOG }}
  19. filter-user: 'CarbonInfraBot'
  20. mode: 'delete'