Adding client's search component class to exclude from getting it clicked on keydown #1928
Workflow file for this run
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: High Impact Alert | |
on: | |
pull_request_target: | |
types: | |
- labeled | |
env: | |
SLACK_HIGH_IMPACT_PR_WEBHOOK: ${{ secrets.SLACK_HIGH_IMPACT_PR_WEBHOOK }} | |
SLACK_MILO_UPDATES_WEBHOOK: ${{ secrets.SLACK_MILO_UPDATES_WEBHOOK }} | |
jobs: | |
send_alert: | |
if: github.repository_owner == 'adobecom' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.base.ref }} | |
- name: Send Slack message for high impact PRs | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const main = require('./.github/workflows/high-impact-alert.js') | |
main({ github, context }) |