Skip to content

Commit 97b03f1

Browse files
authored
chore: namespace and rename gh workflows (#407)
1 parent 100d9cb commit 97b03f1

File tree

9 files changed

+12
-13
lines changed

9 files changed

+12
-13
lines changed

.github/workflows/build.yml renamed to .github/workflows/common-build-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build Docker Image
1+
name: "[common] Build Docker Image"
22

33
on:
44
workflow_dispatch:

.github/workflows/lint.yml renamed to .github/workflows/common-lint.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Linting
1+
name: "[common] Lint"
22

33
on:
44
push:
@@ -32,4 +32,3 @@ jobs:
3232

3333
- name: Deny
3434
uses: EmbarkStudios/cargo-deny-action@v2
35-

.github/workflows/test.yml renamed to .github/workflows/common-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Tests
1+
name: "[common] Tests"
22

33
on:
44
push:

.github/workflows/book-tests.yml renamed to .github/workflows/docs-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Documentation and mdbook related jobs.
22
# Heavily inspired by Reth https://github.com/paradigmxyz/reth/blob/main/.github/workflows/book.yml
33

4-
name: book-tests
4+
name: "[docs] Checks"
55

66
on:
77
pull_request:

.github/workflows/builder-playground.yml renamed to .github/workflows/rb-builder-playground-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Builder Playground Integration Tests
1+
name: "[rollup-boost] Builder Playground Integration Tests"
22

33
on:
44
# Allow manual trigger

.github/workflows/kurtosis_integration.yml renamed to .github/workflows/rb-kurtosis-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Kurtosis Integration Tests
1+
name: "[rollup-boost] Kurtosis Integration Tests"
22

33
on:
44
# Allow manual trigger

.github/workflows/release.yml renamed to .github/workflows/rb-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release
1+
name: "[rollup-boost] Release"
22

33
on:
44
push:
@@ -35,7 +35,7 @@ jobs:
3535
echo "| \`GITHUB_SHA\` | \`${GITHUB_SHA}\` |" >> $GITHUB_STEP_SUMMARY
3636
echo "| \`VERSION\` | \`${VERSION}\` |" >> $GITHUB_STEP_SUMMARY
3737
echo "| \`FEATURES\` | \`${{ github.event.inputs.features || 'none' }}\` |" >> $GITHUB_STEP_SUMMARY
38-
38+
3939
build-binary:
4040
name: Build binary
4141
needs: extract-version

.github/workflows/websocket-proxy-ci.yaml renamed to .github/workflows/wp-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Websocket Proxy CI
1+
name: "[websocket-proxy] Checks"
22

33
on:
44
push:

.github/workflows/websocket-proxy-release.yml renamed to .github/workflows/wp-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release
1+
name: "[websocket-proxy] Release"
22

33
on:
44
push:
@@ -35,7 +35,7 @@ jobs:
3535
echo "| \`GITHUB_SHA\` | \`${GITHUB_SHA}\` |" >> $GITHUB_STEP_SUMMARY
3636
echo "| \`VERSION\` | \`${VERSION}\` |" >> $GITHUB_STEP_SUMMARY
3737
echo "| \`FEATURES\` | \`${{ github.event.inputs.features || 'none' }}\` |" >> $GITHUB_STEP_SUMMARY
38-
38+
3939
build-binary:
4040
name: Build binary
4141
needs: extract-version
@@ -108,7 +108,7 @@ jobs:
108108
platform=${{ matrix.configs.platform }}
109109
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
110110
echo "RELEASE_VERSION=${{ needs.extract-version.outputs.VERSION }}" >> $GITHUB_ENV
111-
111+
112112
- name: Print version
113113
run: |
114114
echo $RELEASE_VERSION

0 commit comments

Comments
 (0)