diff --git a/.github/workflows/daily-markdown-link-check.yaml b/.github/workflows/daily-markdown-link-check.yaml index ffeb12a1..21f6d3a7 100644 --- a/.github/workflows/daily-markdown-link-check.yaml +++ b/.github/workflows/daily-markdown-link-check.yaml @@ -1,11 +1,11 @@ -name: Daily Markdown Link Check +name: documentation run-name: ${{github.event.pull_request.title}} on: schedule: # Run everyday at 5:00 AM - cron: "0 5 * * *" jobs: - markdown-link-check: + daily-markdown-link-check: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/golangci-lint.yaml index 7d29bffa..8e4dfe59 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/golangci-lint.yaml @@ -1,4 +1,4 @@ -name: golangci-lint +name: utils on: push: branches: @@ -11,8 +11,7 @@ permissions: # pull-requests: read jobs: - golangci: - name: lint + golangci-lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/pr-markdown-link-check.yaml b/.github/workflows/pr-markdown-link-check.yaml index fea8e1cc..939317ae 100644 --- a/.github/workflows/pr-markdown-link-check.yaml +++ b/.github/workflows/pr-markdown-link-check.yaml @@ -1,4 +1,4 @@ -name: PR Markdown Link Check +name: documentation run-name: ${{github.event.pull_request.title}} on: [ pull_request ] jobs: diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index f54f71a5..73f5618b 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -1,4 +1,4 @@ -name: Run unit tests +name: tests on: [push, pull_request] @@ -7,7 +7,7 @@ permissions: jobs: # lint: ############################################################################################ - validate: + unit-tests: runs-on: ubuntu-latest steps: ############################################################################################ diff --git a/.github/workflows/run-vuln-check.yaml b/.github/workflows/run-vuln-check.yaml index 179b188b..af671ffe 100644 --- a/.github/workflows/run-vuln-check.yaml +++ b/.github/workflows/run-vuln-check.yaml @@ -1,4 +1,4 @@ -name: Run vuln check +name: security on: push: branches: [ "main" ] @@ -6,7 +6,7 @@ on: permissions: contents: read jobs: - test: + govuln: runs-on: ubuntu-latest steps: - name: Checkout code