From 4a1d0adbcaa17c5858b68f34e4db2423348ea29a Mon Sep 17 00:00:00 2001 From: Zack Zehring Date: Mon, 21 Oct 2024 17:00:44 -0400 Subject: [PATCH 1/3] [EngHub] Add "Drone Signature Check" workflow --- .github/workflows/drone-signature-check.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/drone-signature-check.yml diff --git a/.github/workflows/drone-signature-check.yml b/.github/workflows/drone-signature-check.yml new file mode 100644 index 00000000000..7ae69544b04 --- /dev/null +++ b/.github/workflows/drone-signature-check.yml @@ -0,0 +1,15 @@ +name: Check Drone CI Signature + +on: + push: + paths: + - ".drone/drone.yml" + pull_request: + paths: + - ".drone/drone.yml" + +jobs: + drone-signature-check: + uses: grafana/shared-workflows/.github/workflows/check-drone-signature.yaml@main + with: + drone_config_path: .drone/drone.yml From b4be7e1efa7f506b95cb86687407c6900081be60 Mon Sep 17 00:00:00 2001 From: Zack Zehring Date: Mon, 21 Oct 2024 17:05:12 -0400 Subject: [PATCH 2/3] Test fake change to `drone.yml` --- .drone/drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone/drone.yml b/.drone/drone.yml index 2cf4926f943..7cce8fdf1e7 100644 --- a/.drone/drone.yml +++ b/.drone/drone.yml @@ -1,7 +1,7 @@ --- depends_on: [] kind: pipeline -name: docker-amd64 +name: docker-amd64 - test platform: arch: amd64 os: linux From 9d2aaa9a0822b39384924a4ca8e8b15f2b595d48 Mon Sep 17 00:00:00 2001 From: Zack Zehring Date: Mon, 21 Oct 2024 17:06:36 -0400 Subject: [PATCH 3/3] Change back --- .drone/drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone/drone.yml b/.drone/drone.yml index 7cce8fdf1e7..2cf4926f943 100644 --- a/.drone/drone.yml +++ b/.drone/drone.yml @@ -1,7 +1,7 @@ --- depends_on: [] kind: pipeline -name: docker-amd64 - test +name: docker-amd64 platform: arch: amd64 os: linux