Skip to content

Commit

Permalink
chore(ci): Fix dependabot PR failures (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpogue authored Nov 20, 2024
1 parent 24f7fa2 commit 41ef98b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@

name: Node CI

on: [push, pull_request]
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- '*'

jobs:
test:
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/release-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@

name: Release Auditing

on: [push, pull_request]
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- '*'

jobs:
test:
Expand All @@ -28,7 +34,7 @@ jobs:
- uses: actions/checkout@v4

# Check license headers
- uses: erisu/apache-rat-action@555ae80334a535eb6c1f8920b121563a5a985a75
- uses: erisu/apache-rat-action@v1

# Setup environment with node
- uses: actions/setup-node@v4
Expand Down

0 comments on commit 41ef98b

Please sign in to comment.