Skip to content

Commit

Permalink
Merge pull request #724 from mountaindude/master
Browse files Browse the repository at this point in the history
build: Fix GH Actions triggers
  • Loading branch information
mountaindude committed Feb 17, 2024
2 parents 44a0aea + 1e0d0d6 commit e6b91b3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker-image-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
permissions:
contents: read
packages: write
if: |
github.event_name != 'pull_request' &&
github.repository_owner == 'ptarmiganlabs'
steps:
# - name: Send job status to MQTT (starting job)
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/virus-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ on:
jobs:
virustotal:
runs-on: ubuntu-latest
if: |
github.event_name != 'pull_request' &&
github.repository_owner == 'ptarmiganlabs'
steps:
-
name: VirusTotal Scan
- name: VirusTotal Scan
uses: crazy-max/ghaction-virustotal@v4
with:
vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/post-to-new-relic.js
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ async function postProxySessionsToNewRelic(userSessions) {
}
}

//
// ------------------
// Send data to all New Relic accounts that are enabled for this metric/event
//
// Get New Relic accounts
Expand Down

0 comments on commit e6b91b3

Please sign in to comment.