Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/test-target.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,15 @@ jobs:

- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Download workflow scripts from integrations-core
if: inputs.repo != 'core'
run: |
mkdir -p .github/workflows/scripts
curl -sL https://raw.githubusercontent.com/DataDog/integrations-core/master/.github/workflows/scripts/setup-test-env.sh -o .github/workflows/scripts/setup-test-env.sh
curl -sL https://raw.githubusercontent.com/DataDog/integrations-core/master/.github/workflows/scripts/run-unit-integration-tests.sh -o .github/workflows/scripts/run-unit-integration-tests.sh
curl -sL https://raw.githubusercontent.com/DataDog/integrations-core/master/.github/workflows/scripts/run-e2e-tests.sh -o .github/workflows/scripts/run-e2e-tests.sh
chmod +x .github/workflows/scripts/*.sh

- name: Set environment variables
# This step sets the following environment variables for the entire workflow via setup-test-env.sh:
# FORCE_COLOR
Expand Down Expand Up @@ -175,8 +184,8 @@ jobs:
DD_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Tag job for CI Visibility
# Skip on fork PRs since secrets won't be available
if: env.INPUT_IS_FORK != 'true'
# Skip on fork PRs and non-core repos since secrets won't be available
if: env.INPUT_IS_FORK != 'true' && env.INPUT_REPO == 'core'
uses: ./.github/actions/tag-job
with:
tags: ${{ env.DD_TAGS }}
Expand Down
Loading