diff --git a/.github/workflows/add-label.yaml b/.github/workflows/add-label.yaml new file mode 100644 index 0000000..e852a47 --- /dev/null +++ b/.github/workflows/add-label.yaml @@ -0,0 +1,19 @@ +name: Add Labels +on: + pull_request: + types: + - opened + +jobs: + add-label: + name: Add Label + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: christianvuerings/add-labels@v1 + with: + labels: | + con.distribution + documentation-only + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}