fix(deps): update dependency io.swagger.core.v3:swagger-annotations to v2.2.28 #229
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
# | |
# Labeler | |
# | |
# PRにラベルを付与 | |
--- | |
name: Labelling PR | |
# | |
# 'on' にしている理由 | |
# yamllintで怒られるため | |
# | |
# 参考: https://github.com/adrienverge/yamllint/issues/430 | |
# | |
'on': | |
pull_request: | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: PRにラベルを付与 | |
uses: actions/labeler@v4 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
sync-labels: true # force push等で、途中で結局対象ではなくなったら、そのラベルを削除 | |
configuration-path: .github/labeler.yml |