Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): xxx - fix some vars in github actions. #1359

Merged
merged 3 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ on:
pull_request:

env:
REPO_NAME: ${{ github.repository }}
REPO_OWNER: ${{ github.repository_owner }}
REPO_URL: ${{ github.server_url }}/${{ github.repository }}
GHCR_REGISTRY: ghcr.io
JAVA_VERSION: 17
DOCKER_HUB_REGISTRY_NAMESPACE: tractusx
Expand Down Expand Up @@ -95,7 +98,7 @@ jobs:
message: |
## ‼️ Dependency Check findings ‼️
One or more high/critical findings have been found during dependency check. Please check the depenency report:
https://github.com/eclipse-tractusx/traceability-foss/actions/runs/${{ github.run_id }}
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}

- name: Add PR comment
uses: mshick/add-pr-comment@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
echo "" > pr_description.txt
else
PR_NUMBER=$(echo "$PR_TITLE" | grep -Eo '[0-9]{3,}' | head -n 1)
echo "resolves eclipse-tractusx/traceability-foss#$PR_NUMBER" > pr_description.txt
echo "resolves traceability-foss#$PR_NUMBER" > pr_description.txt
fi

- name: Update Pull Request
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

_**For better traceability add the corresponding GitHub issue number in each changelog entry, please.**_
## [UNRELEASED - DD.MM.YYYY]
### Changed
- #XXX updated variables in github actions to be more generic

## [13.0.2 - 16.08.2024]

Expand Down
Loading