Skip to content

Commit e621e34

Browse files
committed
refactor: Clean action files
1 parent 1bd498e commit e621e34

10 files changed

+13
-14
lines changed

.github/workflows/core-smart-contract-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
concurrency:
1818
group: ${{ github.ref }}-core-smart-contract-ci
1919
cancel-in-progress: true
20-
20+
2121
jobs:
2222
build-and-test:
2323
runs-on: ubuntu-latest

.github/workflows/core-smart-contract-deploy.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Smart Contract Deploy
1+
name: Core Smart Contract - Deploy
22

33
on:
44
workflow_dispatch: # Manual trigger
@@ -58,7 +58,6 @@ jobs:
5858
run: |
5959
NETWORK="${{ inputs.network }}"
6060
ENVIRONMENT="${{ inputs.environment }}"
61-
6261
case "$NETWORK" in
6362
arbitrum|bellecour)
6463
if [ "$ENVIRONMENT" = "dev" ]; then
@@ -102,7 +101,7 @@ jobs:
102101
commit_user_name: 'GitHub Actions Bot'
103102
commit_user_email: 'github-actions[bot]@users.noreply.github.com'
104103
commit_author: 'GitHub Actions Bot <github-actions[bot]@users.noreply.github.com>'
105-
104+
106105
- name: Verify contract
107106
if: inputs.network != 'hardhat'
108107
continue-on-error: true

.github/workflows/publish-npm-deserializer.yml renamed to .github/workflows/deserializer-publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish Package NPM - dataprotector-deserializer
1+
name: Deserializer - Publish NPM Package
22

33
on:
44
workflow_dispatch:

.github/workflows/sdk-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: dataprotector SDK - CI
1+
name: SDK - Default
22

33
on:
44
pull_request:

.github/workflows/publish-npm-sdk-latest.yml renamed to .github/workflows/sdk-publish-npm-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: npm publish latest - dataprotector
1+
name: SDK - Publish NPM latest
22
description: Publish on npm when a release is published
33

44
on:

.github/workflows/publish-npm-sdk-staging.yml renamed to .github/workflows/sdk-publish-npm-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: npm publish staging - dataprotector
1+
name: SDK - Publish NPM staging
22
description: Publish a staging version on npm
33

44
on:

.github/workflows/sharing-smart-contract-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Sharing Smart Contract - Deployment
1+
name: Sharing Smart Contract - Deploy
22

33
on:
44
workflow_dispatch: # Manual trigger
@@ -101,7 +101,7 @@ jobs:
101101
DEPLOYMENT_ID="$DEPLOYMENT_ID" \
102102
npm run deploy -- --network ${{ inputs.network }}
103103
fi
104-
104+
105105
- name: Save deployment artifacts
106106
if: inputs.network != 'hardhat'
107107
uses: stefanzweifel/git-auto-commit-action@v5

.github/workflows/subgraph-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
concurrency:
1818
group: ${{ github.ref }}-subgraph-ci
1919
cancel-in-progress: true
20-
20+
2121
jobs:
2222
build-and-test:
2323
runs-on: ubuntu-latest
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy Subgraph - on self-hosted node
1+
name: Subgraph - Deploy on self-hosted node
22

33
on:
44
workflow_dispatch: # Triggered manually but we can also trigger with an release event

.github/workflows/deploy-subgraph-studio.yml renamed to .github/workflows/subgraph-studio-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy Subgraph - on TheGraph Network
1+
name: Subgraph - Deploy on TheGraph Network
22

33
on:
44
workflow_dispatch: # Manual trigger
@@ -20,7 +20,7 @@ jobs:
2020
uses: ./.github/workflows/subgraph-ci.yml
2121
with:
2222
node-version: 20
23-
23+
2424
deploy:
2525
needs: build-and-test
2626
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)