Skip to content

Commit

Permalink
fix(workflow): use separate workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ybelMekk committed Oct 23, 2023
1 parent edc8793 commit ddb1f41
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 27 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/test-dp-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Test PR
on:
pull_request_target:
paths-ignore:
- '*.md'

permissions:
pull-requests: write
contents: write

jobs:
test_pr:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Checkout latest code
uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'zulu'
cache: 'gradle'

- name: Build with Gradle
run: ./gradlew build

dependabot_pr:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
needs: test_pr
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for Dependabot PRs
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28 changes: 1 addition & 27 deletions .github/workflows/test-pr.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
name: Test PR
on:
pull_request_target:
pull_request:
paths-ignore:
- '*.md'

permissions:
pull-requests: write
contents: write

jobs:
test_pr:
runs-on: ubuntu-latest
Expand All @@ -24,25 +20,3 @@ jobs:

- name: Build with Gradle
run: ./gradlew build

dependabot_pr:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
needs: test_pr
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for Dependabot PRs
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ddb1f41

Please sign in to comment.