Posthog: drop $initial_person_info from outgoing events #1452
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: PR changelog label | |
| on: | |
| # zizmor: ignore[dangerous-triggers] | |
| # This is safe because we do not use actions/checkout or execute untrusted code. | |
| # Using pull_request_target is necessary to allow status writes for PRs from forks. | |
| pull_request_target: | |
| types: [labeled, unlabeled, opened, synchronize] | |
| permissions: | |
| pull-requests: read | |
| statuses: write | |
| jobs: | |
| pr-changelog-label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: yogevbd/enforce-label-action@a3c219da6b8fa73f6ba62b68ff09c469b3a1c024 # 2.2.2 | |
| with: | |
| REQUIRED_LABELS_ANY: "PR-Bug-Fix,PR-Documentation,PR-Task,PR-Feature,PR-Improvement,PR-Developer-Experience,dependencies,PR-Breaking-Change" | |
| REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one 'PR-' label" | |
| BANNED_LABELS: "banned" |