Re-order CI; useCache
for IJ platform dependencies; consolidate dependabot updates for GHA; Add Dependency Submission & Review
workflow; Only test LATEST-EAP-SNAPSHOT
during scheduled runs; Bump gradle/actions from 4.4.2 to 4.4.3 in /github/workflows (ChrisCarini/github-repo-files-sync/pull/294)
#251
Workflow file for this run
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: Enable auto-merge for Dependabot PRs | |
on: pull_request | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- name: Enable auto-merge for Dependabot PRs | |
run: | | |
gh pr merge \ | |
--auto \ | |
--squash \ | |
"$PR_URL" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} |