fix(deps): update go dependencies #307
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: Auto label | |
| on: | |
| pull_request: | |
| # Only following types are handled by the action, but one can default to all as well | |
| types: [opened, reopened, synchronize, edited] | |
| permissions: {} | |
| jobs: | |
| autolabeler: | |
| # Skip fork PRs — the GITHUB_TOKEN is read-only and cannot add labels | |
| if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: release-drafter/release-drafter/autolabeler@5de93583980a40bd78603b6dfdcda5b4df377b32 # v7.2.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |