Skip to content

Commit

Permalink
feat(config): Add workflow for the automatic config conversion
Browse files Browse the repository at this point in the history
The workflow is triggered on PRs for main and releases/** branches if the PR is set for review or synchronized.
  • Loading branch information
MichaelsJP committed Jan 30, 2024
1 parent 2a44cc2 commit 024a50f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/config-conversion-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
- name: Check PR state is ready_for_review
run: |
if [ "${{ github.event_name }}" == "pull_request" ]; then
pr_is_open=$(gh pr view --json state --jq .state)
pr_state=$(gh pr view --json state --jq .state)
pr_is_draft=$(gh pr view --json isDraft --jq .isDraft)
echo "pr_is_open=$pr_is_open" >> $GITHUB_ENV
echo "pr_state=$pr_state" >> $GITHUB_ENV
echo "pr_is_draft=$pr_is_draft" >> $GITHUB_ENV
else
echo "This action is only intended to be run on pull requests."
Expand All @@ -38,7 +38,7 @@ jobs:
.github/utils/config_conversion.sh ors-api/src/main/resources/application.yml ors-api/ors-config.yml
- name: Check with git if ors-api/ors-config.yml has changed
id: git-check
if: env.pr_is_open == 'true' && env.pr_is_draft == 'false'
if: env.pr_state == 'OPEN' && env.pr_is_draft == 'false'
run: |
# Don't fail on exit code 1 (diff found)
set +e
Expand All @@ -52,6 +52,6 @@ jobs:
echo "Config hasn't changed. Skipping commit."
fi
- uses: MichaelsJP/git-auto-commit-action@v5
if: env.pr_is_open == 'true' && env.pr_is_draft == 'false' && env.config_has_changed == 'true'
if: env.pr_state == 'OPEN' && env.pr_is_draft == 'false' && env.config_has_changed == 'true'
with:
commit_message: 'chore(config): automatic conversion of application.yml to ors-config.yml'
2 changes: 1 addition & 1 deletion ors-api/ors-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ ors:
# graphs_root_path: ./graphs
# graphs_data_access: RAM_STORE
# elevation:
# preprocessed: false
# preprocessed: true
# data_access: MMAP
# cache_clear: false
# provider: multi
Expand Down

0 comments on commit 024a50f

Please sign in to comment.