feat: Bump dex to 2.12.4 #1621
Workflow file for this run
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: "Pull Request Labeler" | |
on: | |
pull_request: | |
branches: | |
- main | |
- 'release/*' | |
paths: | |
- 'services/**/*' | |
workflow_dispatch: {} | |
jobs: | |
label-pr: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: Add service identifying label to PRs updating services | |
uses: actions/labeler@v4 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: ".github/service-labeler.yaml" | |
- name: Add labels to automated chart bump PRs | |
uses: actions/labeler@v4 | |
if: startsWith(github.head_ref, 'chartbump/') | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: ".github/services-pr-labeler.yaml" |