feat(cdp): add configurable distinct_id_strategy to vercel log drain #163170
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
| # This workflow is used to call the flags-project-board workflow when a pull request is opened, ready for review, review requested, synchronized, converted to draft, or reopened. | |
| # It is used to update the feature flags project board with the pull request information. | |
| name: Call Feature Flags Project Workflow | |
| on: | |
| pull_request: | |
| types: [opened, ready_for_review, review_requested, synchronize, converted_to_draft, reopened] | |
| permissions: | |
| contents: read | |
| jobs: | |
| call-flags-project: | |
| uses: PostHog/.github/.github/workflows/flags-project-board.yml@main | |
| # Only on PostHog/posthog, as there's no GitHub token on forks | |
| if: ${{ github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' }} | |
| with: | |
| pr_number: ${{ github.event.pull_request.number }} | |
| pr_node_id: ${{ github.event.pull_request.node_id }} | |
| is_draft: ${{ github.event.pull_request.draft }} | |
| secrets: inherit |