docs: test branch #11
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: Add E2E Label to PR | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
label-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Apply labels to PR | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh pr edit ${{ github.event.pull_request.number }} --add-label "Run Smoke E2E" |