Update Helm chart trust-manager to v0.13.0 #8873
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: Meta - Labeler | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- main | |
jobs: | |
labeler: | |
name: Labeler | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate Token | |
uses: tibdex/github-app-token@v2 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Labeler | |
uses: actions/labeler@v5 | |
with: | |
repo-token: "${{ steps.generate-token.outputs.token }}" | |
configuration-path: .github/labeler.yaml |