Skip to content

Commit

Permalink
💚 (ci): Update workflow names
Browse files Browse the repository at this point in the history
  • Loading branch information
valpinkman committed Dec 11, 2024
1 parent c11b93e commit 86fed9c
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/generate_sbom.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Generate SBOM
name: "[Automation] Generate SBOM"

on:
push:
Expand All @@ -9,6 +9,7 @@ on:

jobs:
generate-sbom:
name: Generate SBOM
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge_queue.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Merge Queue Checks
name: "[Checks] Merge Queue"
on:
merge_group:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pull Request Checks
name: "[Checks] Pull Request"
on:
pull_request:
types: [opened, synchronize, reopened, edited]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish npm packages
name: "[Release] Publish Packages"
on:
push:
branches:
Expand All @@ -24,7 +24,7 @@ jobs:

- uses: LedgerHQ/device-sdk-ts/.github/actions/setup-toolchain-composite@develop

- name: build libraries
- name: Build libraries
run: pnpm build:libs

- name: Login to internal JFrog registry
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/snapshot_release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish snapshot version of npm packages
name: "[Release] Snapshot Release"
on:
schedule:
- cron: "0 0 * * *"
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:

- uses: LedgerHQ/device-sdk-ts/.github/actions/setup-toolchain-composite@develop

- name: build libraries
- name: Build libraries
run: pnpm build:libs

- name: Login to internal JFrog registry
Expand All @@ -59,7 +59,7 @@ jobs:
# - name: create .npmrc
# run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> .npmrc

- name: create and publish snapshot release version
- name: Create and publish snapshot release version
id: changesets
run: |
pnpm bump --snapshot ${{ env.TAG }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/update_toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Update toolchain
name: "[Automation] Update Toolchain"

on:
schedule:
Expand All @@ -10,6 +10,7 @@ env:

jobs:
update-toolchain:
name: "Update Toolchain"
runs-on: ["ledgerhq-device-sdk"]
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create release pull request
name: "[Release] Create Versioning Pull Request"
on:
push:
branches:
Expand All @@ -15,10 +15,10 @@ jobs:

- uses: LedgerHQ/device-sdk-ts/.github/actions/setup-toolchain-composite@develop

- name: build libraries
- name: Build libraries
run: pnpm build:libs

- name: create release pull request
- name: Create release pull request
uses: changesets/action@v1
with:
version: pnpm bump
Expand Down

0 comments on commit 86fed9c

Please sign in to comment.