From c5fa17ee520ef16c76892da0cc452fa2a516cb5c Mon Sep 17 00:00:00 2001 From: Bartlomiej Gmerek Date: Fri, 6 Dec 2024 11:05:00 +0100 Subject: [PATCH] Creates v1.5.1 release branch --- .github/ISSUE_TEMPLATE/bug_report.md | 38 ---------------------------- .github/dependabot.yml | 8 ------ .github/workflows/dependabot_pr.yaml | 12 --------- .github/workflows/issues.yaml | 11 -------- .github/workflows/lint-pr.yaml | 20 --------------- .github/workflows/main.yaml | 10 +++----- README.md | 4 +-- 7 files changed, 5 insertions(+), 98 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/dependabot_pr.yaml delete mode 100644 .github/workflows/issues.yaml delete mode 100644 .github/workflows/lint-pr.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index b3c6f60..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug report -about: Create a bug report to help us improve -title: "" -labels: ["bug"] -assignees: '' ---- - -#### Describe the bug - - -#### To Reproduce - - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -#### Expected behavior - - -#### Screenshots - - -#### Logs - - -#### Environment - -- Rock version (if relevant): -- Juju version (output from `juju --version`): -- Cloud Environment: -- Kubernetes version (output from `kubectl version --short`): - -#### Additional context - - diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 9adccd2..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "daily" - commit-message: - prefix: "chore: " diff --git a/.github/workflows/dependabot_pr.yaml b/.github/workflows/dependabot_pr.yaml deleted file mode 100644 index 96252fd..0000000 --- a/.github/workflows/dependabot_pr.yaml +++ /dev/null @@ -1,12 +0,0 @@ -name: "Dependabot Auto Approve and Merge" - -on: - pull_request: - -permissions: - pull-requests: write - contents: write - -jobs: - auto-merge: - uses: canonical/sdcore-github-workflows/.github/workflows/dependabot_pr.yaml@v2.3.0 diff --git a/.github/workflows/issues.yaml b/.github/workflows/issues.yaml deleted file mode 100644 index 3c161cd..0000000 --- a/.github/workflows/issues.yaml +++ /dev/null @@ -1,11 +0,0 @@ -name: Sync Issues to JIRA - -on: - issues: - types: [opened, reopened, closed] - -jobs: - update: - name: Update Issue - uses: canonical/sdcore-github-workflows/.github/workflows/issues.yaml@v2.3.0 - secrets: inherit diff --git a/.github/workflows/lint-pr.yaml b/.github/workflows/lint-pr.yaml deleted file mode 100644 index d54e174..0000000 --- a/.github/workflows/lint-pr.yaml +++ /dev/null @@ -1,20 +0,0 @@ -name: "Lint PR" - -on: - pull_request_target: - types: - - opened - - edited - - synchronize - -permissions: - pull-requests: read - -jobs: - main: - name: Validate PR title - runs-on: ubuntu-latest - steps: - - uses: amannn/action-semantic-pull-request@v5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 3cfa02f..c21c021 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -1,14 +1,10 @@ -name: Main +name: Release v1.5.1 CI on: pull_request: branches: - - main + - v1.5.1 push: - branches: - - main - schedule: - - cron: '0 0 * * 0' jobs: @@ -20,6 +16,6 @@ jobs: uses: canonical/sdcore-github-workflows/.github/workflows/scan-rock.yaml@v2.3.0 publish-rock: - if: github.ref_name == 'main' + if: github.ref_name == 'v1.5.1' needs: scan-rock uses: canonical/sdcore-github-workflows/.github/workflows/publish-rock.yaml@v2.3.0 diff --git a/README.md b/README.md index b3747a1..3dde7a0 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,6 @@ Container image for SD-Core AUSF. ## Usage ```console -docker pull ghcr.io/canonical/sdcore-ausf:1.4.0 -docker run -it ghcr.io/canonical/sdcore-ausf:1.4.0 +docker pull ghcr.io/canonical/sdcore-ausf:1.5.1 +docker run -it ghcr.io/canonical/sdcore-ausf:1.5.1 ```