MWPW-164385 [Mobile Gnav]when the megamenu is opened and scrolled seen the overlapping issue on the content and screen is freezed #632
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: Feds File Watch | |
on: | |
pull_request_target: | |
types: [opened, labeled] | |
env: | |
FEDS_WATCH_HOOK: ${{ secrets.FEDS_WATCH_HOOK }} | |
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 messages if a PR contains feds related files. | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const main = require('./.github/workflows/check-feds-files.js') | |
main({ github, context }) |