build: 💚 some fix in the proto generation script #98
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: Auto Labeler | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
# pull_request_target: | |
jobs: | |
auto-labeler: | |
name: Auto Labeler | |
runs-on: ubuntu-latest | |
permissions: | |
# write permission is required for autolabeler | |
# otherwise, read permission is required at least | |
pull-requests: write | |
contents: read | |
## just for multi-labeler | |
# statuses: write | |
# checks: write | |
steps: | |
- uses: release-drafter/release-drafter@v6 | |
with: | |
config-name: release-drafter.yml | |
disable-releaser: true # releaser mode is disabled. | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# - uses: fuxingloh/multi-labeler@v1 | |
# name: conventional-commits-pull-request-labeler | |
# with: | |
# github-token: ${{secrets.GITHUB_TOKEN}} # optional, default to '${{ github.token }}' | |
# config-path: .github/multi-labeler.yml # optional, default to '.github/labeler.yml' | |
# # https://github.com/actions/labeler | |
# - uses: actions/labeler@v5 | |
# with: | |
# repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
# sync-labels: true | |
# https://docs.github.com/en/actions/using-workflows/about-workflows#creating-dependent-jobs | |
# https://docs.github.com/en/actions/using-jobs/using-jobs-in-a-workflow | |
- name: check-conventional-commits-labels | |
uses: docker://agilepathway/pull-request-label-checker:latest | |
if: success() | |
with: | |
any_of: feature,bug,enhancement,refactor,deprecated,security,documentation,build,ci/cd,devops,chore,performance,formatting,dependencies,test,major,minor,patch | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |