Konnect cleanup, branch:main, triggered by @pmalek #11
This file contains 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: Konnect cleanup | |
run-name: Konnect cleanup, branch:${{ github.ref_name }}, triggered by @${{ github.actor }} | |
concurrency: | |
# Run only for most recent commit in PRs but for all tags and commits on main | |
# Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency | |
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }} | |
cancel-in-progress: true | |
on: | |
schedule: | |
- cron: '47 */4 * * *' | |
workflow_dispatch: {} | |
permissions: | |
contents: read | |
jobs: | |
cleanup: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# NOTE: this matrix should match the test matrix which is used for | |
# integration tests. | |
include: | |
- konnect-api-url: https://us.api.konghq.tech | |
- konnect-api-url: https://eu.api.konghq.tech | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5 | |
with: | |
go-version-file: go.mod | |
- name: run integration tests | |
run: make test.integration | |
env: | |
KONNECT_API_URL: ${{ matrix.konnect-api-url }} | |
KONNECT_API_PAT: ${{ secrets.KONNECT_API_PAT }} | |
KONG_CUSTOM_DOMAIN: konghq.tech |