Bump ridedott/merge-me-action from 2.2.18 to 2.10.172 #1034
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Node CI | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Run test suite | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [12.x] | |
| steps: | |
| - uses: actions/checkout@v2.3.4 | |
| - name: Check file formatting against EditorConfig | |
| uses: editorconfig-checker/action-editorconfig-checker@v1.0.0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v2.1.5 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm test | |
| env: | |
| CI: true | |
| merge-me: | |
| name: Auto-merge dependency updates | |
| needs: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: ridedott/merge-me-action@v2.10.172 | |
| with: | |
| GITHUB_LOGIN: 'dependabot[bot]' | |
| # We need to use a custom token to trigger a build for the merge | |
| # Using the default token doesn't do this. | |
| GITHUB_TOKEN: ${{ secrets.GH_MERGE_TOKEN }} | |
| MERGE_METHOD: MERGE |