-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into NDT-751-When-uploading-Template-9-from-RFI-c…
…ancel-still-uploads
- Loading branch information
Showing
29 changed files
with
312 additions
and
228 deletions.
There are no files selected for viewing
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,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Check if there are changes in the db folder | ||
if git diff --quiet HEAD^ HEAD -- db; then | ||
echo "No changes in the db folder. Skipping sqitch tag." | ||
else | ||
echo "Changes detected in the db folder. Running sqitch tag." | ||
docker pull sqitch/sqitch | ||
curl -L https://git.io/JJKCn -o sqitch && chmod +x sqitch | ||
./sqitch --chdir db tag "$1" -m "release v$1" | ||
fi |
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
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 |
---|---|---|
|
@@ -97,8 +97,10 @@ jobs: | |
- name: Setup Sqitch User | ||
if: steps.checkbox.outputs.result == 'true' && steps.up_to_date.outputs.result == 'true' && steps.pr_approval.outputs.result == 'true' && !github.event.pull_request.draft | ||
run: | | ||
sqitch config --user user.name 'CCBC Service Account' | ||
sqitch config --user user.email '[email protected]' | ||
docker pull sqitch/sqitch | ||
curl -L https://git.io/JJKCn -o sqitch && chmod +x sqitch | ||
./sqitch config --user user.name 'CCBC Service Account' | ||
./sqitch config --user user.email '[email protected]' | ||
- name: Make Release | ||
if: steps.checkbox.outputs.result == 'true' && steps.up_to_date.outputs.result == 'true' && steps.pr_approval.outputs.result == 'true' && !github.event.pull_request.draft | ||
run: | | ||
|
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 |
---|---|---|
|
@@ -45,6 +45,7 @@ jobs: | |
run: echo "results-length=$(cat trivy-results.sarif | jq '.runs[0].results | length')" >> $GITHUB_OUTPUT | ||
|
||
trivy-scan-db: | ||
if: github.event.ref == 'refs/heads/main' | ||
runs-on: ubuntu-latest | ||
outputs: | ||
results-length: ${{ steps.scan-results-length.outputs.results-length }} | ||
|
@@ -81,7 +82,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected].12 | ||
uses: renovatebot/[email protected].13 | ||
with: | ||
configurationFile: ./.github/renovate.json | ||
token: ${{ secrets.RENOVATE_GITHUB_TOKEN }} |
Oops, something went wrong.