Skip to content

fix(datadog_logs sink): serialize before batching for more accurate request sizing #12

fix(datadog_logs sink): serialize before batching for more accurate request sizing

fix(datadog_logs sink): serialize before batching for more accurate request sizing #12

name: Call Build Preview
on:
pull_request:
types: [opened, reopened]
jobs:
approval_check:
runs-on: ubuntu-latest
steps:
- name: Echo approval
run: |
echo "Workflow has been allowed to run for PR ${{ github.event.number }}. Setting artifacts and then continuing workflow runs"
# Save the PR number and branch name to an artifact for use in subsequent jobs
- name: Save PR number and Branch name
run: |
mkdir -p ./pr
echo "PR Number: ${{ github.event.number }}" > ./pr/PR_INFO
echo "Branch Name: ${{ github.head_ref }}" >> ./pr/PR_INFO
# Upload the artifact
- name: Upload PR information artifact
uses: actions/upload-artifact@v2
with:
name: pr
path: pr/