chore: update dependency versions and refactor JWT parsing in Util class #29
Workflow file for this run
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: Release Drafter | |
| on: | |
| push: | |
| branches: | |
| - master | |
| # pull_request event is required only for autolabeler | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| permissions: | |
| contents: read | |
| jobs: | |
| update_release_draft: | |
| if: github.event_name == 'push' | |
| permissions: | |
| # write permission is required to create a GitHub release | |
| contents: write | |
| # read permission is required to read pull request metadata | |
| pull-requests: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Draft the next Release notes as Pull Requests are merged into main | |
| - uses: release-drafter/release-drafter@563bf132657a13ded0b01fcb723c5a58cdd824e2 # v7 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| auto_label: | |
| if: github.event_name == 'pull_request' | |
| permissions: | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: release-drafter/release-drafter/autolabeler@563bf132657a13ded0b01fcb723c5a58cdd824e2 # v7 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |