Add pipeline ID to the error message for unused connectors. #18326
Workflow file for this run
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: Builder - Integration tests | |
on: | |
# on changes to the main branch touching the builder | |
push: | |
branches: [main] | |
# on PRs touching the builder | |
pull_request: | |
branches: [main] | |
# once a day at 6:17 AM UTC | |
schedule: | |
- cron: "17 6 * * *" | |
# manual execution | |
workflow_dispatch: | |
merge_group: | |
types: [checks_requested] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
integration-test: | |
name: Integration test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Go | |
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0 | |
with: | |
go-version: ~1.23.6 | |
- name: Test | |
run: make builder-integration-test |