Skip to content

[release/v1.42.x-0.63bx] Prepare release 1.42.0/0.63b0 #6

[release/v1.42.x-0.63bx] Prepare release 1.42.0/0.63b0

[release/v1.42.x-0.63bx] Prepare release 1.42.0/0.63b0 #6

Workflow file for this run

# Do not edit this file.
# This file is generated automatically by executing tox -e generate-workflows
name: CI
on:
push:
branches:
- 'main'
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
misc:
uses: ./.github/workflows/misc.yml
lint:
uses: ./.github/workflows/lint.yml
tests:
uses: ./.github/workflows/test.yml
contrib:
uses: open-telemetry/opentelemetry-python-contrib/.github/workflows/core_contrib_test.yml@1.42.0

Check failure on line 27 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "open-telemetry/opentelemetry-python-contrib/.github/workflows/core_contrib_test.yml@1.42.0" : failed to fetch workflow: reference to workflow should be either a valid branch, tag, or commit
with:
CORE_REPO_SHA: ${{ github.sha }}
CONTRIB_REPO_SHA: ${{ github.event_name == 'pull_request' && (
contains(github.event.pull_request.labels.*.name, 'prepare-release') && github.event.pull_request.head.ref ||
contains(github.event.pull_request.labels.*.name, 'backport') && github.event.pull_request.base.ref ||
'main'
) || 'main' }}
check:
if: always()
needs:
- misc
- lint
- tests
- contrib
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}