Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
contents: read
packages: read
container:
image: ghcr.io/benbenbang/reusable-workflows/pre-commit:${{ inputs.image_version }}
image: ghcr.io/bitbrew-dev/reusable-workflows/pre-commit:${{ inputs.image_version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUN_ALL_FILES: ${{ inputs.run_all_files }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prek.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
contents: read
packages: read
container:
image: ghcr.io/benbenbang/reusable-workflows/pre-commit:${{ inputs.image_version }}
image: ghcr.io/bitbrew-dev/reusable-workflows/pre-commit:${{ inputs.image_version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUN_ALL_FILES: ${{ inputs.run_all_files }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/self-semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
jobs:
semantic-release:
if: github.event.inputs.prompt == 'true'
uses: benbenbang/reusable-workflows/.github/workflows/semantic-release.yml@main
uses: bitbrew-dev/reusable-workflows/.github/workflows/semantic-release.yml@main
secrets: inherit
with:
new_version_title: "♻️ Reusable workflow"
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
environment: ${{ inputs.environment }}
runs-on: ubuntu-latest
container:
image: ghcr.io/benbenbang/reusable-workflows/semantic-release:${{ inputs.semantic_release_image_tag }}
image: ghcr.io/bitbrew-dev/reusable-workflows/semantic-release:${{ inputs.semantic_release_image_tag }}
outputs:
new_release: ${{ steps.get-next-version.outputs.new-release-published }}
new_release_version: ${{ steps.get-next-version.outputs.new-release-version }}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ For example:
```yaml
jobs:
pre-commit:
uses: benbenbang/reusable-workflows/.github/workflows/pre-commit.yml@main
uses: bitbrew-dev/reusable-workflows/.github/workflows/pre-commit.yml@main
secrets: inherit

semantic-release:
uses: benbenbang/reusable-workflows/.github/workflows/semantic-release.yml@main
uses: bitbrew-dev/reusable-workflows/.github/workflows/semantic-release.yml@main
secrets: inherit

pypi-publish:
uses: benbenbang/reusable-workflows/.github/workflows/pypi-publish.yml@main
uses: bitbrew-dev/reusable-workflows/.github/workflows/pypi-publish.yml@main
secrets: inherit

docker-build-push:
uses: benbenbang/reusable-workflows/.github/workflows/docker-build-push.yml@main
uses: bitbrew-dev/reusable-workflows/.github/workflows/docker-build-push.yml@main
secrets: inherit
with:
tags: ghcr.io/owner/repo:latest
Expand Down
10 changes: 5 additions & 5 deletions ops/pre-commit/build_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ function build_images(){
--build-arg NODE_VERSION=${NODE_VERSION} \
--build-arg PREK_VERSION=${PREK_VERSION} \
--build-arg PULUMI_VERSION=${PULUMI_VERSION} \
-t ghcr.io/benbenbang/pre-commit:latest \
-t ghcr.io/benbenbang/r-workflows/pre-commit:latest \
-t ghcr.io/benbenbang/reusable-workflows/pre-commit:latest \
-t ghcr.io/benbenbang/r-workflows/prek:latest \
-t ghcr.io/benbenbang/reusable-workflows/prek:latest \
-t ghcr.io/bitbrew-dev/pre-commit:latest \
-t ghcr.io/bitbrew-dev/r-workflows/pre-commit:latest \
-t ghcr.io/bitbrew-dev/reusable-workflows/pre-commit:latest \
-t ghcr.io/bitbrew-dev/r-workflows/prek:latest \
-t ghcr.io/bitbrew-dev/reusable-workflows/prek:latest \
--push \
-f $_CURRENT_DIR/Dockerfile \
$_CURRENT_DIR/.
Expand Down
4 changes: 2 additions & 2 deletions ops/semantic-release/build_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ _CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# build the image on linux/amd64 and linux/arm64
docker buildx build --platform linux/amd64,linux/arm64 \
--no-cache \
-t ghcr.io/benbenbang/semantic-release:latest \
-t ghcr.io/benbenbang/reusable-workflows/semantic-release:latest \
-t ghcr.io/bitbrew-dev/semantic-release:latest \
-t ghcr.io/bitbrew-dev/reusable-workflows/semantic-release:latest \
--push \
-f $_CURRENT_DIR/Dockerfile \
$_CURRENT_DIR/.
2 changes: 1 addition & 1 deletion scripts/hadolint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# under the License.

# Script has been modified by
# - @benbenbang
# - @bitbrew-dev
#

set -u # Ensure the script fails on undefined variables
Expand Down
2 changes: 1 addition & 1 deletion scripts/init.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# @Author: benbenbang
# @Author: bitbrew-dev
# @Date: 2020-08-12
# @Last Modified by: Ben Chen
# @Last Modified time: 2020-08-13
Expand Down
Loading