Skip to content

Commit

Permalink
SWF: Migration PR Build workflow to exo-actions/pr-action action (#29)
Browse files Browse the repository at this point in the history
This PR will migrate PR builds workflow to exo-actions/pr-action action.
  • Loading branch information
hbenali authored Dec 6, 2024
1 parent 36e82f2 commit 793c0b2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/buildci.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/prbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: PR Build
on:
pull_request:
jobs:
pr-build:
name: PR Build
runs-on: ubuntu-latest
timeout-minutes: 120
permissions:
pull-requests: write
steps:
- name: PR Build
uses: exo-actions/pr-action@v1
with:
maven_profiles: 'exo-release,coverage'
jdk_major_version: 21
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
M2_SETTINGS_FILE_URL: ${{ vars.GHACI_SETTINGS_XML_URL }}

0 comments on commit 793c0b2

Please sign in to comment.