Skip to content

Commit

Permalink
Applied changes from commit 2db4ff9390f019c346cef4af0f2a3e6eaf4d7735
Browse files Browse the repository at this point in the history
  • Loading branch information
alty1224 committed Jan 20, 2025
1 parent 8004ca8 commit 8fef681
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@ If applicable, add screenshots to help explain your problem.

**Additional context**
Add any other context about the problem here.
---
---
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ A clear and concise description of any alternative solutions or features you've

**Additional context**
Add any other context or screenshots about the feature request here.
---
---
13 changes: 13 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,16 @@ _If your PR includes any deployment or processing changes, please utilize this c
## [optional] Are there any things to highlight or double check?

## [optional] What gif best describes this PR or how it makes you feel?
- [ ] Refactor
- [ ] Feature
- [ ] Bug Fix
- [ ] Optimization
- [ ] Documentation Update
-->
- Related Issue #
- Closes #
- [ ] Does it change any deployment parameters, logic of their working or rename them?
- [ ] Did update from previous version tested with the same set of deployment parameters?
- [ ] Yes
- [ ] No, and this is why: _please replace this line with details on why tests
- [ ] I need help with writing tests
4 changes: 4 additions & 0 deletions .github/workflows/clean.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ jobs:
package-type: 'container'
package-version-ids: ${{ steps.get-ids-for-delete.outputs.ids-for-delete }}
if: ${{ steps.get-ids-for-delete.outputs.ids-for-delete != '' }}
- name: qubership-backup-daemon
base: alpine
component-tag: ${{ env.TAG_NAME }}_${{ matrix.component.base }}
access-token: ${{ secrets.GITHUB_TOKEN }}
20 changes: 19 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,22 @@ jobs:
package-name: ${{ matrix.component.name }}
package-type: 'container'
package-version-ids: ${{ steps.get-ids-for-delete.outputs.ids-for-delete }}
if: ${{ steps.get-ids-for-delete.outputs.ids-for-delete != '' }}
if: ${{ steps.get-ids-for-delete.outputs.ids-for-delete != '' }} workflow_dispatch:
inputs:
publish_docker:
description: "Publish image to ghcr.io"
type: boolean
default: true
required: false
PUSH: ${{ (github.event_name == 'workflow_dispatch' && inputs.publish_docker) || !startsWith(github.ref, 'refs/heads/dependabot') }}
GITHUB_GROUP: ${{ github.repository_owner }}
- name: qubership-backup-daemon
file: alpine/Dockerfile
base: alpine
- name: Prepare Group
run: echo "GITHUB_GROUP=${GITHUB_GROUP,,}" >> $GITHUB_ENV
component-tag: ${{ env.TAG_NAME }}_${{ matrix.component.base }}
access-token: ${{ secrets.GITHUB_TOKEN }}
if: ${{ env.PUSH }}
context: ${{ matrix.component.dir }}
tags: ghcr.io/${{ env.GITHUB_GROUP }}/${{ matrix.component.name }}:${{ env.TAG_NAME }}_${{ matrix.component.base }}

0 comments on commit 8fef681

Please sign in to comment.