Skip to content

Commit

Permalink
feat: 1.0.0 (#49)
Browse files Browse the repository at this point in the history
* fix: bump actions/checkout from 4.1.7 to 4.2.0 (#44)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.7...v4.2.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: bump bandit[toml] from 1.7.9 to 1.7.10 (#43)

Bumps [bandit[toml]](https://github.com/PyCQA/bandit) from 1.7.9 to 1.7.10.
- [Release notes](https://github.com/PyCQA/bandit/releases)
- [Commits](PyCQA/bandit@1.7.9...1.7.10)

---
updated-dependencies:
- dependency-name: bandit[toml]
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: bump pylint from 3.3.0 to 3.3.1 (#42)

Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.3.0 to 3.3.1.
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.3.0...v3.3.1)

---
updated-dependencies:
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: update workflows to have rules (#45)

* added documentation (#46)

* doc: doc version from odsbox (#47)

* feat: set version to 1.0.0 (#48)

* fix linter

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
totonga and dependabot[bot] authored Oct 5, 2024
1 parent 08ed8b8 commit 236bcf7
Show file tree
Hide file tree
Showing 14 changed files with 1,003 additions and 161 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ updates:
- dependency-type: indirect
commit-message:
prefix: "fix: "
target-branch: dev
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
time: "13:00"
commit-message:
prefix: "fix: "
target-branch: dev
6 changes: 3 additions & 3 deletions .github/workflows/schedule-update-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.PAT }}
token: ${{ secrets.GITHUB_TOKEN }}

- name: Run GitHub Actions Version Updater
uses: saadmk11/github-actions-version-updater@v0.8.1
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.PAT }}
token: ${{ secrets.GITHUB_TOKEN }}
pull_request_title: "ci: Update GitHub Actions to Latest Version"
13 changes: 13 additions & 0 deletions .github/workflows/semantic-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,16 @@ jobs:
- uses: amannn/action-semantic-pull-request@v5.5.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
restrict-merge:
name: Restrict PR to main to dev and hotfix/*
runs-on: ubuntu-latest
steps:
- name: Check source branch
if: github.event.pull_request.base.ref == 'main'
run: |
if [[ "${{ github.event.pull_request.head.ref }}" =~ ^(dev|hotfix/.*|release/.*)$ ]]; then
echo "Branch name is valid."
else
echo "Invalid branch name. Only 'dev' or 'hotfix/*' branches can be merged into 'main'."
exit 1
fi
2 changes: 1 addition & 1 deletion .github/workflows/template-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7 # important!
- uses: actions/checkout@v4.2.0 # important!
- uses: euphoricsystems/action-sync-template-repository@v2.5.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"datamatrix",
"DCOUNT",
"EXTERNALREFERENCE",
"groupby",
"iloc",
"isort",
"iterrows",
Expand All @@ -55,6 +56,7 @@
"noqa",
"NOTINSET",
"NOTLIKE",
"notnull",
"odsbox",
"Oneof",
"pycln",
Expand All @@ -64,6 +66,7 @@
"rowskip",
"seqlimit",
"seqskip",
"stddev",
"STORAGETYPE",
"submatrix",
"TESTSTEP",
Expand Down
3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@

sys.path.insert(0, os.path.abspath("../src/"))


# -- Project information -----------------------------------------------------

project = "ASAM ODSBox docs"
copyright = "2024, Peak Solution"
author = "Peak Solution"

# The full version, including alpha/beta/rc tags
release = "0.1.0"
release = "1.0.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Welcome to ASAM ODSBox docs's documentation!

overview
odsbox
jaquel
repository_rules

Indices and tables
==================
Expand Down
Loading

0 comments on commit 236bcf7

Please sign in to comment.