Skip to content

Commit

Permalink
Creates v1.0.0 release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Gmerold committed Dec 4, 2024
1 parent cb1c82a commit a21451c
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 112 deletions.
23 changes: 0 additions & 23 deletions .github/dependabot.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/build-nms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
uses: actions/checkout@v4

- name: Install Node
uses: actions/setup-node@v4
Expand Down
27 changes: 4 additions & 23 deletions .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: "CodeQL"

on:
push:
schedule:
- cron: "16 20 * * 0"
workflow_call:

jobs:
analyze:
Expand All @@ -21,34 +19,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
26 changes: 0 additions & 26 deletions .github/workflows/dependabot_pr.yaml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/issues.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/lint-pr.yaml

This file was deleted.

16 changes: 9 additions & 7 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
name: Main branch CI
name: Release v1.0.0 CI

on:
pull_request:
branches:
- main

- v1.0.0
push:
schedule:
- cron: "0 0 * * 0"

jobs:
nms-lint-report:
uses: ./.github/workflows/nms-lint-report.yaml

codeql:
uses: ./.github/workflows/codeql-analysis.yaml

build-nms:
needs: nms-lint-report
needs:
- nms-lint-report
- codeql
uses: ./.github/workflows/build-nms.yaml

build-rock:
Expand All @@ -26,6 +28,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.0.0'
needs: scan-rock
uses: canonical/sdcore-github-workflows/.github/workflows/publish-rock.yaml@v2.3.0
2 changes: 1 addition & 1 deletion .github/workflows/nms-lint-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
uses: actions/checkout@v4

- name: Install Node
uses: actions/setup-node@v4
Expand Down

0 comments on commit a21451c

Please sign in to comment.