[v2.9] Bump cis-operator and security-scan to the latest version in cis-benchmark chart #104
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: Label issue | |
on: | |
issues: | |
types: | |
- opened | |
- reopened | |
permissions: | |
issues: write | |
jobs: | |
label_issues: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label issue | |
id: run | |
run: gh issue edit -R ${GITHUB_REPOSITORY} --add-label ${LABEL} ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LABEL: "team/security" |