From 8939fb655f64a1e6b759818b12eff8db7dfef680 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Tue, 15 Aug 2023 22:15:37 -0400 Subject: [PATCH] Rename CI job names to match other repos (#185) Once we merge this, I need to update the required status checks to use these new names. Do not merge this without me :) --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/setup-binary-test.yml | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32d9a3a4..85f5d19f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,21 +27,21 @@ concurrency: cancel-in-progress: true jobs: - lint: + go_lint: uses: './.github/workflows/go-lint.yml' with: go_version: '1.20' - test: + go_test: uses: './.github/workflows/go-test.yml' with: go_version: '1.20' - lint-terraform: + terraform_lint: uses: './.github/workflows/terraform-lint.yml' with: terraform_version: 1.3 directory: 'terraform' - lint-yaml: + yaml_lint: uses: './.github/workflows/yaml-lint.yml' diff --git a/.github/workflows/setup-binary-test.yml b/.github/workflows/setup-binary-test.yml index 00886ce8..87aa1e8d 100644 --- a/.github/workflows/setup-binary-test.yml +++ b/.github/workflows/setup-binary-test.yml @@ -18,6 +18,7 @@ on: pull_request: paths: - '.github/actions/setup-binary/**' + jobs: setup-binary-test: strategy: