Skip to content

Commit

Permalink
feat: change action naming (#808)
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek authored May 28, 2024
1 parent d4014c5 commit 82ae935
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 23 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci-code.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Code validation
name: Lint

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

jobs:
lint:
name: Code linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pull Request validation
name: PR Title

on:
pull_request:
Expand All @@ -12,7 +12,7 @@ on:

jobs:
pr-lint:
name: Validate PR title
name: 'validate'
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
Expand Down Expand Up @@ -40,6 +40,6 @@ jobs:
# Delete a previous comment when the issue has been resolved
- if: ${{ steps.lint_pr_title.outputs.error_message == null }}
uses: marocchino/sticky-pull-request-comment@v2
with:
with:
header: pr-title-lint-error
delete: true
8 changes: 4 additions & 4 deletions .github/workflows/dev-pipeline-mainnet.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Develop pipelines - mainnet
name: Develop Mainnet

on:
push:
branches:
- develop

env:
ENV: "dev"
APP: "aescan"
Expand All @@ -15,12 +15,12 @@ jobs:
main:
runs-on: ubuntu-latest
environment: develop
name: Develop Pipeline Aescan Frontend
name: build
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Get commit sha on PR Sync
if: github.event_name == 'push'
id: git-sha
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/dev-pipeline-testnet.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Develop pipelines - testnet
name: Develop Testnet

on:
push:
branches:
- develop

env:
ENV: "dev"
APP: "aescan-testnet"
Expand All @@ -15,12 +15,12 @@ jobs:
main:
runs-on: ubuntu-latest
environment: develop
name: Develop Pipeline Aescan Frontend Testnet
name: build
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Get commit sha on PR Sync
if: github.event_name == 'push'
id: git-sha
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
images: aeternity/aescan
tags: |
type=raw,value=develop,enable=${{ endsWith(GitHub.ref, 'develop') }}
- name: Create dotenv
run: |
echo APP_VERSION=$(git describe --tags)-dev >> .env
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prd-pipeline-mainnet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Production pipelines - mainnet
name: Production Mainnet

on:
push:
Expand All @@ -15,7 +15,7 @@ jobs:
main:
runs-on: ubuntu-latest
environment: production
name: Production Pipeline æScan Frontend
name: build
steps:
- uses: actions/checkout@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prd-pipeline-testnet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Production pipelines - testnet
name: Production Testnet

on:
push:
Expand All @@ -15,7 +15,7 @@ jobs:
main:
runs-on: ubuntu-latest
environment: production
name: Production Pipeline æScan Frontend Testnet
name: build
steps:
- uses: actions/checkout@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stg-pipeline-mainnet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pull Request Preview pipelines
name: Preview Mainnet

on:
pull_request:
Expand All @@ -17,7 +17,7 @@ concurrency: aescan_staging_environment-${{ github.ref }}
jobs:
main:
runs-on: ubuntu-latest
name: Staging Pipeline Aescan Frontend
name: build
steps:
- uses: actions/checkout@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/stg-pipeline-testnet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pull Request Preview pipelines Testnet
name: Preview Testnet

on:
pull_request:
Expand All @@ -17,7 +17,7 @@ concurrency: aescan_staging_environment-${{ github.ref }}
jobs:
main:
runs-on: ubuntu-latest
name: Staging Pipeline Aescan Frontend Testnet
name: build
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
end-to-end-tests:
needs: main
runs-on: ubuntu-22.04
name: Run E2E Tests
name: E2E Tests
timeout-minutes: 10
steps:
- name: Wait for 4 minutes
Expand Down

0 comments on commit 82ae935

Please sign in to comment.