Revert "fix(mssql): adds missing containers for dataflow and datajob entities, required for browse paths v2 generation" #5392
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: "Pull Request Labeler" | |
on: | |
pull_request_target: | |
types: [opened, reopened] | |
jobs: | |
triage: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/labeler@v4 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: ".github/pr-labeler-config.yml" | |
- uses: actions-ecosystem/[email protected] | |
# only add names of Acryl Data team members here | |
if: | |
${{ | |
!contains( | |
fromJson('[ | |
"anshbansal", | |
"asikowitz", | |
"chriscollins3456", | |
"david-leifker", | |
"shirshanka", | |
"sid-acryl", | |
"swaroopjagadish", | |
"treff7es", | |
"yoonhyejin", | |
"gabe-lyons", | |
"hsheth2", | |
"jjoyce0510", | |
"maggiehays", | |
"pedro93", | |
"RyanHolstien", | |
"sakethvarma397", | |
"purnimagarg1", | |
"sagar-salvi-apptware", | |
"kushagra-apptware", | |
"Salman-Apptware", | |
"mayurinehate", | |
"noggi", | |
"skrydal", | |
"kevinkarchacryl", | |
"sgomezvillamor", | |
"acrylJonny", | |
"chakru-r" | |
]'), | |
github.actor | |
) | |
}} | |
with: | |
github_token: ${{ github.token }} | |
labels: | | |
community-contribution | |
- uses: actions-ecosystem/[email protected] | |
# only add names of champions here. Confirm with DevRel Team | |
if: | |
${{ | |
contains( | |
fromJson('[ | |
"siladitya2", | |
"bossenti", | |
"PatrickfBraz", | |
"cuong-pham", | |
"sudhakarast", | |
"tkdrahn", | |
"rtekal", | |
"mikeburke24", | |
"DSchmidtDev" | |
]'), | |
github.actor | |
) | |
}} | |
with: | |
github_token: ${{ github.token }} | |
labels: | | |
datahub-community-champion |