File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ jobs:
106106 path : tmp/screenshots
107107 if-no-files-found : ignore
108108 - uses : codecov/codecov-action@v5
109- if : ${{ matrix.ruby_version == 3.2 && matrix.test_type == 'test' }}
109+ if : ${{ matrix.ruby_version == 3.2 && matrix.test_type == 'test' && github.actor != 'dependabot[bot]' }}
110110 with :
111111 directory : coverage
112112 fail_ci_if_error : true
@@ -116,7 +116,7 @@ jobs:
116116 deploy :
117117 name : Dev server deployment
118118 runs-on : ubuntu-latest
119- if : ${{ github.event_name == 'push' }}
119+ if : ${{ github.event_name == 'push' && github.actor != 'dependabot[bot]' }}
120120 needs :
121121 - rubocop
122122 - typescript
Original file line number Diff line number Diff line change 1111 - cron : ' 0 21 * * *'
1212
1313jobs :
14+ # TEMPORARY RESTORE - REMOVE WITH CONFIG
15+ CodeQL-Build :
16+ runs-on : ubuntu-latest
17+ steps :
18+ - name : Checkout repository
19+ uses : actions/checkout@v2
20+ with :
21+ fetch-depth : 2
22+ - name : Initialize CodeQL
23+ uses : github/codeql-action/init@v2
24+ with :
25+ languages : javascript
26+ - name : Autobuild
27+ uses : github/codeql-action/autobuild@v2
28+ - name : Perform CodeQL Analysis
29+ uses : github/codeql-action/analyze@v2
30+
1431 analyze :
1532 name : Analyze JS and Ruby
1633 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments