Skip to content

AYS-455 | Use User ID Instead of emailAddress in User Tracking Fields #966

AYS-455 | Use User ID Instead of emailAddress in User Tracking Fields

AYS-455 | Use User ID Instead of emailAddress in User Tracking Fields #966

# Purpose: This file is used to build the project when a pull request is opened, reopened, edited, synchronized, ready for review, or unlocked.
# Name of the workflow
name: Pull Request Checker
# Trigger the workflow when various types of pull request events occur
on:
pull_request:
types:
- opened # triggers the workflow when a pull request is opened.
- reopened # triggers the workflow when a pull request is reopened after being closed.
- edited # triggers the workflow when a pull request is edited (changes are made to the pull request (the title, description, assignees, labels, or other attributes of the pull request))
- synchronize # triggers the workflow when a pull request is synchronized (changes are pushed to the branch associated with the pull request)
- ready_for_review # triggers the workflow when a pull request is marked as ready for review
- unlocked # triggers the workflow when a previously locked pull request is unlocked
jobs:
build: # Define the "build" job
runs-on: ubuntu-latest # Run the job on the latest version of Ubuntu
steps: # List of steps to execute within the job
- name: Update package cache # Step to update the package cache
run: sudo apt-get update
- name: Checkout code # Step to check out the code from the repository
uses: actions/checkout@v3
- name: Set up Java # Step to set up the Java environment
uses: actions/setup-java@v3
with:
java-version: 17 # Specify Java 17 as the version
distribution: 'zulu' # Use the 'zulu' distribution of Java
- name: Set up Docker # Step to set up the Docker environment
uses: actions/hello-world-docker-action@v2
- name: Install Maven # Step to install Maven
run: sudo apt-get install -y maven
- name: Copy settings.xml file from template # Step to create a new 'settings.xml' file by copying the 'template-settings.xml'
run: cp template-settings.xml settings.xml
- name: Replace username in settings.xml # Step to replace the placeholder username in settings.xml
run: sed 's|'{YOUR_GITHUB_USERNAME}'|'${{ secrets.GH_USERNAME }}'|g' settings.xml >> temp-settings.xml ; rm settings.xml ; mv temp-settings.xml settings.xml
- name: Replace access token in settings.xml # Step to replace the placeholder access token in settings.xml
run: sed 's|'{YOUR_PERSONAL_GITHUB_ACCESS_TOKEN}'|'${{ secrets.GH_USER_ACCESS_TOKEN }}'|g' settings.xml >> temp-settings.xml ; rm settings.xml ; mv temp-settings.xml settings.xml
- name: Build with Maven # Step to build the application using Maven with the provided settings.xml configuration file
run: mvn --settings settings.xml clean install