From 901ac6584c4a84a49f1cd569e221ccd84678384b Mon Sep 17 00:00:00 2001 From: Diego Date: Tue, 19 Nov 2024 11:16:42 -0500 Subject: [PATCH] rename CI job and delete validate --- .github/workflows/{ci.yml => docker.yml} | 2 +- .github/workflows/validate.yml | 28 ------------------------ 2 files changed, 1 insertion(+), 29 deletions(-) rename .github/workflows/{ci.yml => docker.yml} (99%) delete mode 100644 .github/workflows/validate.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/docker.yml similarity index 99% rename from .github/workflows/ci.yml rename to .github/workflows/docker.yml index c57c08f8a38a..606bc08f0699 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/docker.yml @@ -1,4 +1,4 @@ -name: CI +name: Docker env: FOUNDRY_PROFILE: ci diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml deleted file mode 100644 index af25a9533814..000000000000 --- a/.github/workflows/validate.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Validate Workflows - -on: - pull_request: - branches: - - celestia-develop - paths: - - ".github/workflows/**" - -jobs: - validate: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Create actionlint config - run: | - echo "self-hosted-runner: - # Add your custom runner labels here if needed - labels: - - ubuntu-latest - - ubuntu-latest-16-cores" > .actionlint.yaml - - - name: Validate workflows - uses: docker://rhysd/actionlint:latest - with: - shellcheck: true - fail-on-error: true