Add param binding error check in auth scheme resolution to avoid pani… #139
This file contains hidden or 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: github | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| permissions: | |
| issues: write | |
| jobs: | |
| labeler: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v1 | |
| - name: Run Labeler | |
| if: success() | |
| uses: crazy-max/ghaction-github-labeler@v1 | |
| with: | |
| yaml_file: .github/labels.yml | |
| skip_delete: true | |
| dry_run: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |