From 5fe34e02968c666a41198fabacd9a65086fc5489 Mon Sep 17 00:00:00 2001 From: PotentialStyx <62217716+PotentialStyx@users.noreply.github.com> Date: Sat, 17 Feb 2024 16:50:36 -0800 Subject: [PATCH] ci(build,clippy): Setup merge queue ci runs --- .github/workflows/ci.yml | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6476ebc..e3dbf97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ { "push": { "branches": ["pure-rust"] }, "pull_request": {}, + "merge_group": {}, }, "name": "CI", "permissions": { "security-events": "write" }, @@ -144,30 +145,5 @@ }, ], }, - "docker-build": - { - "name": "Build & Push Docker Container", - "needs": ["build"], - "runs-on": "ubuntu-latest", - "steps": - [ - { - "name": "Checkout", - "uses": "actions/checkout@v4", - }, - { - "name": "Build Image", - "run": "docker buildx build -t ghcr.io/goval-community/homeval:${{ github.sha }} .", - }, - { - "name": "Log In to Registry", - "run": 'echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin', - }, - { - "name": "Push Image", - "run": "docker push ghcr.io/goval-community/homeval:${{ github.sha }}", - }, - ], - }, }, }