-
Notifications
You must be signed in to change notification settings - Fork 38
32 lines (27 loc) · 909 Bytes
/
automerge.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: "Automerge"
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
browser: ["chrome", "opera", "firefox"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "16.x"
cache: "yarn"
- run: yarn install
- run: npx grunt build --clientId=${{ secrets.FEEDLY_CLIENT_ID }} --clientSecret=${{ secrets.FEEDLY_CLIENT_SECRET }} --browser=${{ matrix.browser }}
automerge:
needs: test
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3.11.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}