...

Text file src/github.com/aws/smithy-go/.github/workflows/labeler.yml

Documentation: github.com/aws/smithy-go/.github/workflows

     1name: github
     2
     3on:
     4  push:
     5    branches:
     6      - "main"
     7
     8jobs:
     9  labeler:
    10    runs-on: ubuntu-latest
    11    steps:
    12      - name: Checkout
    13        uses: actions/checkout@v1
    14      - name: Run Labeler
    15        if: success()
    16        uses: crazy-max/ghaction-github-labeler@v1
    17        with:
    18          yaml_file: .github/labels.yml
    19          skip_delete: true
    20          dry_run: false
    21        env:
    22          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View as plain text