From 982bac511867d4a9774d9758b68d8bf548f0468b Mon Sep 17 00:00:00 2001 From: Amogh Bharadwaj Date: Thu, 2 Nov 2023 08:08:06 -0700 Subject: [PATCH 1/3] Change branch in stable docker yml to stable (#603) --- .github/workflows/stable-docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stable-docker.yml b/.github/workflows/stable-docker.yml index c76919de1b..360a50f6c4 100644 --- a/.github/workflows/stable-docker.yml +++ b/.github/workflows/stable-docker.yml @@ -34,7 +34,7 @@ jobs: with: token: ${{ secrets.DEPOT_TOKEN }} files: ./docker-bake.hcl - push: ${{ github.ref == 'refs/heads/main' }} + push: ${{ github.ref == 'refs/heads/stable' }} env: SHA_SHORT: stable-${{ github.ref_name }} TAG: latest-stable From e022c1e8e4013f744f16c7b5bfa0bd040df714c0 Mon Sep 17 00:00:00 2001 From: Amogh Bharadwaj Date: Thu, 2 Nov 2023 08:20:18 -0700 Subject: [PATCH 2/3] Change Push Condition of Stable YAML to True (#604) --- .github/workflows/stable-docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stable-docker.yml b/.github/workflows/stable-docker.yml index 360a50f6c4..79e9017cea 100644 --- a/.github/workflows/stable-docker.yml +++ b/.github/workflows/stable-docker.yml @@ -34,7 +34,7 @@ jobs: with: token: ${{ secrets.DEPOT_TOKEN }} files: ./docker-bake.hcl - push: ${{ github.ref == 'refs/heads/stable' }} + push: true env: SHA_SHORT: stable-${{ github.ref_name }} TAG: latest-stable From 2920b479bfa5728b03e401221fbb81c1f25ba50b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= Date: Thu, 2 Nov 2023 16:50:07 +0000 Subject: [PATCH 3/3] cargo fmt (#606) Mark generated modules in nexus/pt with `rustfmt::skip` --- nexus/pt/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nexus/pt/src/lib.rs b/nexus/pt/src/lib.rs index a12e67d670..82884934c8 100644 --- a/nexus/pt/src/lib.rs +++ b/nexus/pt/src/lib.rs @@ -4,8 +4,11 @@ use peerdb_peers::DbType; use sqlparser::ast::PeerType; pub mod flow_model; +#[rustfmt::skip] pub mod peerdb_flow; +#[rustfmt::skip] pub mod peerdb_peers; +#[rustfmt::skip] pub mod peerdb_route; impl From for DbType {