Checking missing files #40
This file contains 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: Checking missing files | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
inputs: | |
dryRun: | |
description: 'Whether the build should really make a change or not' | |
default: 'true' | |
workingOrgs: | |
description: 'Working Organizations to Scan' | |
default: 'axonivy,axonivy-market' | |
push: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Setup Maven | |
uses: stCarolas/setup-maven@v5 | |
- name: Create a file with TOKEN value | |
run: | | |
echo -n "${{ secrets.TOKEN }}" > token_file | |
echo "File created at: $(pwd)/token_file" | |
- name: Get the file path | |
id: get-file-path | |
run: echo "::set-output name=filepath::$(pwd)/token_file" | |
- name: Set default values for dryRun and workingOrgs | |
id: set-defaults | |
run: | | |
echo "dryRun=${{ github.event.inputs.dryRun || 'true' }}" >> $GITHUB_ENV | |
echo "workingOrgs=${{ github.event.inputs.workingOrgs || 'axonivy,axonivy-market' }}" >> $GITHUB_ENV | |
- name: Build with Maven | |
working-directory: ./github-repo-manager | |
run: | | |
mvn -f pom_check_missing_file.xml -B clean compile exec:java \ | |
-DDRY_RUN="${{ env.dryRun }}" \ | |
-DGITHUB.TOKEN.FILE="${{ steps.get-file-path.outputs.filepath }}" \ | |
-Dexec.mainClass="com.axonivy.github.file.GitHubMissingFiles" \ | |
-Dexec.args="${{ github.actor }}" \ | |
-DGITHUB.WORKING.ORGANIZATIONS="${{ env.workingOrgs }}" | |
continue-on-error: true | |
- name: Delete TOKEN file | |
run: | | |
rm token_file | |
echo "Token file deleted." |