Update jwt-secret-init-job.yaml #1218
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
# | |
# Copyright (c) 2019 - 2024 StreamNative, Inc.. All Rights Reserved. | |
# | |
name: Auto Labeling | |
on: | |
pull_request_target : | |
types: | |
- opened | |
- edited | |
- labeled | |
# A GitHub token created for a PR coming from a fork doesn't have | |
# 'admin' or 'write' permission (which is required to add labels) | |
# To avoid this issue, you can use the `scheduled` event and run | |
# this action on a certain interval.And check the label about the | |
# document. | |
jobs: | |
labeling: | |
if: ${{ github.repository == 'streamnative/charts' }} | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: streamnative/github-workflow-libraries/doc-label-check@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
label-pattern: '- \[(.*?)\] ?`(.+?)`' # matches '- [x] `label`' |