Skip to content

Commit 383e4fb

Browse files
authored
Merge branch 'main' into server-side-pagination
2 parents 6de8cce + 6981427 commit 383e4fb

5 files changed

Lines changed: 91 additions & 74 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2020

2121
- name: Log in to Docker Hub
22-
if: github.repository == 'finos/git-proxy'
22+
if: github.repository_owner == 'finos'
2323
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
2424
with:
2525
username: finos
@@ -29,13 +29,13 @@ jobs:
2929
id: tags
3030
run: |
3131
if [ "${{ github.event_name }}" = "release" ]; then
32-
echo "tags=finos/git-proxy:${{ github.ref_name }},finos/git-proxy:latest" >> $GITHUB_OUTPUT
32+
echo "tags=${{ github.repository }}:${{ github.ref_name }},${{ github.repository }}:latest" >> $GITHUB_OUTPUT
3333
else
34-
echo "tags=finos/git-proxy:main" >> $GITHUB_OUTPUT
34+
echo "tags=${{ github.repository }}:main" >> $GITHUB_OUTPUT
3535
fi
3636
3737
- name: Build and Publish Docker Image
38-
if: github.repository == 'finos/git-proxy'
38+
if: github.repository_owner == 'finos'
3939
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
4040
with:
4141
context: .

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<br />
2525

26-
[![FINOS - Active](https://cdn.jsdelivr.net/gh/finos/contrib-toolbox@master/images/badge-active.svg)](https://community.finos.org/docs/governance/Software-Projects/stages/active)
26+
[![FINOS - Graduated](https://cdn.jsdelivr.net/gh/finos/contrib-toolbox@master/images/badge-graduated.svg)](https://community.finos.org/docs/governance/lifecycle-stages/graduated)
2727
[![NPM](https://img.shields.io/npm/v/@finos/git-proxy?colorA=00C586&colorB=000000)](https://www.npmjs.com/package/@finos/git-proxy)
2828
[![Build](https://img.shields.io/github/actions/workflow/status/finos/git-proxy/ci.yml?branch=main&label=CI&logo=github&colorA=00C586&colorB=000000)](https://github.com/finos/git-proxy/actions/workflows/ci.yml)
2929
[![codecov](https://codecov.io/gh/finos/git-proxy/branch/main/graph/badge.svg)](https://codecov.io/gh/finos/git-proxy)

package-lock.json

Lines changed: 83 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@finos/git-proxy",
3-
"version": "2.0.0-rc.5",
3+
"version": "2.0.0-rc.6",
44
"description": "Deploy custom push protections and policies on top of Git.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)