pip-python314(deps): bump the opentelemetry group in /components/runtimes/python314 with 5 updates #461
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: pull-build | |
| on: | |
| pull_request_target: | |
| branches: | |
| - main | |
| types: [opened, edited, synchronize, reopened, ready_for_review] | |
| permissions: | |
| contents: read # This is required for actions/checkout | |
| jobs: | |
| select-environment: | |
| runs-on: ubuntu-latest | |
| environment: restricted | |
| #uncomment after gating is allowed - environment: ${{ github.event.pull_request.author_association != 'COLLABORATOR' && github.event.pull_request.author_association != 'OWNER' && 'restricted' || 'internal' }} | |
| steps: | |
| - name: Approved | |
| run: echo "Build approved, environment selected" | |
| builds: | |
| needs: select-environment | |
| uses: ./.github/workflows/_build.yaml | |
| permissions: | |
| id-token: write # This is required for requesting the JWT token | |
| contents: read # This is required for actions/checkout | |
| with: | |
| purpose: "dev" | |
| img_directory: "dev" | |
| img_version: PR-${{ github.event.number }} | |
| integrations: | |
| needs: builds | |
| uses: ./.github/workflows/_integration-tests.yaml | |
| with: | |
| img_directory: "dev" | |
| img_version: PR-${{ github.event.number }} |