From db06c774778b98cc350c01ac2054ef0bfcf79096 Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Mon, 16 Sep 2024 08:36:49 +0100 Subject: [PATCH] add test events --- .github/test/events/push-main.json | 3 +++ .github/test/events/push-tag-build.json | 3 +++ .github/test/events/push-tag-docker-nonsemver.json | 3 +++ .github/test/events/push-tag-docker.json | 3 +++ .github/test/events/push-tag-infra-prod.json | 3 +++ .github/test/events/push-tag-infra-test.json | 3 +++ .github/test/events/push-tag-semver.json | 3 +++ .github/test/events/push-tag.json | 3 +++ 8 files changed, 24 insertions(+) create mode 100644 .github/test/events/push-main.json create mode 100644 .github/test/events/push-tag-build.json create mode 100644 .github/test/events/push-tag-docker-nonsemver.json create mode 100644 .github/test/events/push-tag-docker.json create mode 100644 .github/test/events/push-tag-infra-prod.json create mode 100644 .github/test/events/push-tag-infra-test.json create mode 100644 .github/test/events/push-tag-semver.json create mode 100644 .github/test/events/push-tag.json diff --git a/.github/test/events/push-main.json b/.github/test/events/push-main.json new file mode 100644 index 000000000..ccb4cb1c1 --- /dev/null +++ b/.github/test/events/push-main.json @@ -0,0 +1,3 @@ +{ + "ref": "refs/heads/main" +} diff --git a/.github/test/events/push-tag-build.json b/.github/test/events/push-tag-build.json new file mode 100644 index 000000000..9490c181a --- /dev/null +++ b/.github/test/events/push-tag-build.json @@ -0,0 +1,3 @@ +{ + "ref": "refs/tags/build-buildtag" +} diff --git a/.github/test/events/push-tag-docker-nonsemver.json b/.github/test/events/push-tag-docker-nonsemver.json new file mode 100644 index 000000000..5ce2d8dcf --- /dev/null +++ b/.github/test/events/push-tag-docker-nonsemver.json @@ -0,0 +1,3 @@ +{ + "ref": "refs/tags/v.docker.nonsemver" +} diff --git a/.github/test/events/push-tag-docker.json b/.github/test/events/push-tag-docker.json new file mode 100644 index 000000000..7b55610ca --- /dev/null +++ b/.github/test/events/push-tag-docker.json @@ -0,0 +1,3 @@ +{ + "ref": "refs/tags/v.docker.1.2.3" +} diff --git a/.github/test/events/push-tag-infra-prod.json b/.github/test/events/push-tag-infra-prod.json new file mode 100644 index 000000000..7d4bb3a0b --- /dev/null +++ b/.github/test/events/push-tag-infra-prod.json @@ -0,0 +1,3 @@ +{ + "ref": "refs/tags/infra-prod-anything" +} diff --git a/.github/test/events/push-tag-infra-test.json b/.github/test/events/push-tag-infra-test.json new file mode 100644 index 000000000..78eeefbe4 --- /dev/null +++ b/.github/test/events/push-tag-infra-test.json @@ -0,0 +1,3 @@ +{ + "ref": "refs/tags/infra-test-anything" +} diff --git a/.github/test/events/push-tag-semver.json b/.github/test/events/push-tag-semver.json new file mode 100644 index 000000000..3fb65c920 --- /dev/null +++ b/.github/test/events/push-tag-semver.json @@ -0,0 +1,3 @@ +{ + "ref": "refs/tags/1.2.3" +} diff --git a/.github/test/events/push-tag.json b/.github/test/events/push-tag.json new file mode 100644 index 000000000..26496f808 --- /dev/null +++ b/.github/test/events/push-tag.json @@ -0,0 +1,3 @@ +{ + "ref": "refs/tags/standard-tag" +}