Skip to content

Commit

Permalink
ci: add paths
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkeyl committed Aug 18, 2024
1 parent 0dfbbb3 commit fe970d4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CodeQL

on:
pull_request:
pull_request_target:
branches:
- main
paths:
Expand Down Expand Up @@ -45,10 +45,5 @@ jobs:

- name: Perform Code Analysis
uses: github/codeql-action/analyze@v3
id: analyze

- name: Upload SARIF File
uses: github/codeql-action/upload-sarif@v3
with:
category: ${{ matrix.language }}
sarif_file: ${{ steps.analyze.outputs.sarif-output }}
category: /language:${{ matrix.language }}
4 changes: 4 additions & 0 deletions .github/workflows/eslint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ on:
pull_request:
branches:
- main
paths:
- src/**/*.ts
push:
branches:
- main
paths:
- src/**/*.ts

jobs:
eslint:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
id: generate_token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.RELEASE_UNBLOCKER_APP_ID }}
private_key: ${{ secrets.RELEASE_UNBLOCKER_APP_PRIVATE_KEY }}
app_id: ${{ secrets.ARCHOLEATER_APP_ID }}
private_key: ${{ secrets.ARCHOLEATER_APP_PRIVATE_KEY }}

- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ on:
pull_request:
branches:
- main
paths:
- src/**/*.ts
push:
branches:
- main
paths:
- src/**/*.ts

jobs:
spec:
Expand Down

0 comments on commit fe970d4

Please sign in to comment.