Skip to content

Fix UI alignment and spacing issue with "OR" separator between buttons for Woo 2FA screen #55382

Fix UI alignment and spacing issue with "OR" separator between buttons for Woo 2FA screen

Fix UI alignment and spacing issue with "OR" separator between buttons for Woo 2FA screen #55382

name: Lighthouse Review Requested
on:
pull_request:
types: [review_requested]
jobs:
add_review_label:
runs-on: ubuntu-latest
name: Add P2 labels and project
steps:
- name: Add label "Needs Review"
if: ${{ contains(github.event.pull_request.requested_teams.*.name, 'Lighthouse') }}
run: |
curl --request POST \
--url 'https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels' \
--header 'Authorization: token ${{ secrets.GITHUB_TOKEN }}' \
--header 'Accept: application/vnd.github.v3+json' \
--data-raw '{"labels":["[Status] Needs Review"]}'
- name: Add author as assignee
if: ${{ contains(github.event.pull_request.requested_teams.*.name, 'Lighthouse') }}
run: |
curl --request PATCH \
--url 'https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}' \
--header 'Authorization: token ${{ secrets.GITHUB_TOKEN }}' \
--header 'Accept: application/vnd.github.v3+json' \
--data-raw '{"assignees": [ "${{ github.event.pull_request.user.login }}" ]}'
- name: Add to P2 project board
if: ${{ contains(github.event.pull_request.requested_teams.*.name, 'Lighthouse') }}
run: |
curl --request POST \
--url 'https://api.github.com/projects/columns/19237220/cards' \
--header 'Accept: application/vnd.github.inertia-preview+json' \
--header 'Authorization: token ${{ secrets.AUTOMATTIC_FINANCE }}' \
--header 'Content-Type: application/json; charset=utf-8' \
--data-raw '{"content_type": "PullRequest", "content_id": ${{ github.event.pull_request.id }}}'