-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (35 loc) · 1.21 KB
/
konnect-cleanup.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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