From 31e0bc2a7a96018036f0040cbe7152750dbf0487 Mon Sep 17 00:00:00 2001 From: sergerad Date: Fri, 17 Jan 2025 14:31:54 +1300 Subject: [PATCH 1/3] RM testnet workflow --- .github/workflows/testnet.yaml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/testnet.yaml diff --git a/.github/workflows/testnet.yaml b/.github/workflows/testnet.yaml deleted file mode 100644 index 3b853d702..000000000 --- a/.github/workflows/testnet.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: Push Testnet Docker Image - -on: - workflow_dispatch: - inputs: - dev: - description: "Develop tag to push as testnet (e.g. develop-1736464855-git.6a0aa89)" - required: true - version: - description: "Testnet version to use in the new image tag (e.g. v1.0.0-beta.13)" - required: true - -jobs: - tag_and_push_testnet_image: - name: Tag and Push Testnet Image - runs-on: ubuntu-latest - steps: - - name: Log in to GitHub Container Registry - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - name: Promote Develop image to Testnet - shell: bash - run: | - dev_tag="${{ inputs.dev }}" - dev_image="ghcr.io/${{ github.repository }}/immutable-geth:$dev_tag" - testnet_image="ghcr.io/${{ github.repository }}/immutable-geth:testnet-${{ inputs.version }}" - - docker pull "$dev_image" - docker tag "$dev_image" "$testnet_image" - docker push "$testnet_image" From d251f6613626c4ef551dce0831123caabde3e9a1 Mon Sep 17 00:00:00 2001 From: sergerad Date: Fri, 17 Jan 2025 15:24:31 +1300 Subject: [PATCH 2/3] Update codeowners --- .github/CODEOWNERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 869e6be18..5f2a7dc42 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,6 +1,6 @@ # Lines starting with '#' are comments. # Each line is a file pattern followed by one or more owners. -.github/workflows/ @immutable/prodsec @sergerad @rzmahmood @EdwardJES @jp-imx -.github/actions/ @immutable/prodsec @sergerad @rzmahmood @EdwardJES @jp-imx +.github/workflows/ @immutable/prodsec @sergerad @drinkcoffee @ermyas @jp-imx @ipekt @wcgcyx +.github/actions/ @immutable/prodsec @sergerad @drinkcoffee @ermyas @jp-imx @ipekt @wcgcyx ./ @sergerad @drinkcoffee @ermyas @jp-imx @ipekt @wcgcyx From 161233dd17d72ea753bb7d1ae7ae4accedeeb081 Mon Sep 17 00:00:00 2001 From: sergerad Date: Fri, 17 Jan 2025 15:34:00 +1300 Subject: [PATCH 3/3] Rename develop tag to unstable --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 64dce3f90..fbaa78e4b 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -20,7 +20,7 @@ jobs: REPOSITORY_NAME="$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" BUILD_TIMESTAMP="$(date +%s)" SHORT_SHA="$(git rev-parse --short HEAD)" - echo TAGS="ghcr.io/${{ github.repository }}/immutable-geth:develop-$BUILD_TIMESTAMP-git.$SHORT_SHA" >> $GITHUB_ENV + echo TAGS="ghcr.io/${{ github.repository }}/immutable-geth:unstable-$BUILD_TIMESTAMP-git.$SHORT_SHA" >> $GITHUB_ENV - uses: ./.github/actions/push with: