Skip to content

docs: test branch

docs: test branch #11

Workflow file for this run

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"