-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ip/1465-update-handling-metadata
- Loading branch information
Showing
262 changed files
with
8,745 additions
and
3,470 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,24 @@ jobs: | |
permissions: write-all | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Draft Pull Request Check | ||
if: github.event.pull_request.draft == true | ||
run: exit 1 | ||
|
||
- name: Check for Ready for Review label | ||
if: "!contains(github.event.pull_request.labels.*.name, 'require-backend-approval')" | ||
run: exit 0 | ||
- name: Check for 'require-backend-approval' label | ||
run: | | ||
LABELS=$(gh pr view ${{ github.event.pull_request.number }} --json labels --jq '.labels[].name') | ||
echo "Labels on PR: $LABELS" | ||
if ! echo "$LABELS" | grep -q "require-backend-approval"; then | ||
echo "Label 'require-backend-approval' not found. Exiting successfully." | ||
exit 0 | ||
fi | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Configure AWS Credentials | ||
uses: aws-actions/[email protected] | ||
|
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# frozen_string_literal: true | ||
|
||
module ControllerLoggingContext | ||
extend ActiveSupport::Concern | ||
included { before_action :set_context } | ||
|
||
private | ||
|
||
def set_context | ||
RequestStore.store['request_id'] = request.uuid | ||
RequestStore.store['additional_request_attributes'] = { | ||
'remote_ip' => request.remote_ip, | ||
'user_agent' => request.user_agent, | ||
'user_uuid' => current_user&.uuid, | ||
'source' => request.headers['Source-App-Name'] | ||
} | ||
end | ||
end |
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
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
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
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
103 changes: 0 additions & 103 deletions
103
app/controllers/v1/decision_review_evidences_controller.rb
This file was deleted.
Oops, something went wrong.
49 changes: 0 additions & 49 deletions
49
app/controllers/v1/higher_level_reviews/contestable_issues_controller.rb
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
app/controllers/v1/notice_of_disagreements/contestable_issues_controller.rb
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.