Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: change action naming #808

Merged
merged 2 commits into from
May 28, 2024
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
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
Loading