diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index b6c34be8693..e1e2f831827 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -61,25 +61,25 @@ jobs: - name: Check blockers in core env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - REPO: open-telemetry/opentelemetry-collector + REPO: jackgopack4/opentelemetry-collector run: ./.github/workflows/scripts/release-check-blockers.sh # Make sure that there are no open issues with release:blocker label in Contrib. The release has to be delayed until they are resolved. - name: Check blockers in contrib env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - REPO: open-telemetry/opentelemetry-collector-contrib + REPO: jackgopack4/opentelemetry-collector-contrib run: ./.github/workflows/scripts/release-check-blockers.sh # Make sure the current main branch build successfully passes (Core). - name: Check build status in core env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - REPO: open-telemetry/opentelemetry-collector + REPO: jackgopack4/opentelemetry-collector run: ./.github/workflows/scripts/release-check-build-status.sh # Make sure the current main branch build successfully passes (Contrib). - name: Check build status in contrib env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - REPO: open-telemetry/opentelemetry-collector-contrib + REPO: jackgopack4/opentelemetry-collector-contrib run: ./.github/workflows/scripts/release-check-build-status.sh - name: Setup Go uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 diff --git a/Makefile b/Makefile index 7568f3784ab..c098ca8e40e 100644 --- a/Makefile +++ b/Makefile @@ -192,7 +192,7 @@ genproto-cleanup: # Generate OTLP Protobuf Go files. This will place generated files in PROTO_TARGET_GEN_DIR. genproto: genproto-cleanup mkdir -p ${OPENTELEMETRY_PROTO_SRC_DIR} - curl -sSL https://api.github.com/repos/open-telemetry/opentelemetry-proto/tarball/${OPENTELEMETRY_PROTO_VERSION} | tar xz --strip 1 -C ${OPENTELEMETRY_PROTO_SRC_DIR} + curl -sSL https://api.github.com/repos/jackgopack4/opentelemetry-proto/tarball/${OPENTELEMETRY_PROTO_VERSION} | tar xz --strip 1 -C ${OPENTELEMETRY_PROTO_SRC_DIR} # Call a sub-make to ensure OPENTELEMETRY_PROTO_FILES is populated $(MAKE) genproto_sub $(MAKE) fmt