Skip to content

docs: test branch

docs: test branch #2

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: Apply labels to PR
run: |
gh api \
--method POST \
-H "Accept: application/vnd.github.v3+json" \
/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels \
-f labels='["Run Smoke E2E"]'