Skip to content

Commit

Permalink
ci(github-actions): rename flows
Browse files Browse the repository at this point in the history
  • Loading branch information
PunGrumpy committed Nov 19, 2023
1 parent b350c9c commit d395436
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
security:
name: 🔒 Security
uses: ./.github/workflows/security.yml
code_review:
codeql:
needs: [security]
name: 🫸 Code Review
uses: ./.github/workflows/code_review.yml
name: 🫸 CodeQL
uses: ./.github/workflows/codeql.yml
lint:
needs: [code_review]
needs: [codeql]
strategy:
fail-fast: false
matrix:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: 🫸 Code Review
name: 🫸 CodeQL
on:
schedule:
- cron: '0 0 * * *'
workflow_call:
jobs:
codeql:
analyze:
strategy:
fail-fast: false
matrix:
Expand All @@ -16,7 +16,7 @@ jobs:
actions: read
contents: read
security-events: write
name: 🧑‍⚕️ Code Quality Lab
name: 🧑‍⚕️ CodeQL Analysis
runs-on: ${{ matrix.os }}
timeout-minutes: 360
steps:
Expand Down

0 comments on commit d395436

Please sign in to comment.