Build(deps): Bump tldts-experimental from 7.4.3 to 7.4.4 in the tldts group across 1 directory #5554
Workflow file for this run
This file contains hidden or 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: Enforce PR labels | |
| on: | |
| pull_request: | |
| types: [labeled, unlabeled, opened, edited, synchronize] | |
| jobs: | |
| enforce-label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| sparse-checkout: | | |
| packages/adblocker/src/engine/engine.ts | |
| sparse-checkout-cone-mode: false | |
| fetch-depth: 0 | |
| - name: Find ENGINE_VERSION changes | |
| id: DIFF_ENGINE_VERSION | |
| run: | | |
| if \ | |
| git diff master...HEAD -- packages/adblocker/src/engine/engine.ts | \ | |
| grep -E "^[-+]export const ENGINE_VERSION = [0-9]+;$" \ | |
| ; then echo "IS_CHANGED=TRUE" >> "$GITHUB_OUTPUT" \ | |
| ; fi | |
| - uses: yogevbd/enforce-label-action@a3c219da6b8fa73f6ba62b68ff09c469b3a1c024 # v2.2.2 | |
| if: steps.DIFF_ENGINE_VERSION.outputs.IS_CHANGED == 'TRUE' | |
| with: | |
| REQUIRED_LABELS_ANY: "PR: Breaking Change :boom:,PR: New Feature :rocket:,PR: Performance :running_woman:,PR: Internal :house:" | |
| REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one label: PR: Breaking Change :boom:, PR: New Feature :rocket:, PR: Performance :running_woman:, PR: Internal :house:" | |
| - uses: yogevbd/enforce-label-action@a3c219da6b8fa73f6ba62b68ff09c469b3a1c024 # v2.2.2 | |
| if: steps.DIFF_ENGINE_VERSION.outputs.IS_CHANGED == '' | |
| with: | |
| REQUIRED_LABELS_ANY: "PR: Breaking Change :boom:,PR: Bug Fix :bug:,PR: Dependencies :nut_and_bolt:,PR: Docs :memo:,PR: Internal :house:,PR: New Feature :rocket:,PR: Performance :running_woman:,PR: Polish :nail_care:" | |
| REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one label: PR: Breaking Change :boom:, PR: Bug Fix :bug:, PR: Dependencies :nut_and_bolt:, PR: Docs :memo:, PR: Internal :house:, PR: New Feature :rocket:, PR: Performance :running_woman:, PR: Polish :nail_care:" |