Skip to content

Commit

Permalink
chore: upgrade github-action-merge-dependabot to v3 (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eomm authored Dec 18, 2021
1 parent 838b365 commit 6d8e0c3
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
name: ci
on:
'on':
push:
paths-ignore:
- 'docs/**'
- docs/**
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- docs/**
- '*.md'
jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
node-version: [10, 12, 14, 16]
os: [ubuntu-latest, windows-latest, macOS-latest]

node-version:
- 10
- 12
- 14
- 16
os:
- ubuntu-latest
- windows-latest
- macOS-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
Expand All @@ -28,11 +33,13 @@ jobs:
- name: Run Tests
run: |
npm test
automerge:
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v2.7.1
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 6d8e0c3

Please sign in to comment.