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

Pre Release #28

Merged
merged 17 commits into from
Nov 16, 2023
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
3 changes: 2 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ updates:
interval: "weekly"
day: "monday"
time: "09:00"
target-branch: develop
labels:
- "type/housekeeping"
- "changes/patch"
2 changes: 1 addition & 1 deletion .github/workflows/tigger-pr-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:

release:
needs: ["changelog"]
uses: ./.github/workflows/workflow-realease-drafter.yml
uses: ./.github/workflows/workflow-release-drafter.yml
8 changes: 4 additions & 4 deletions .github/workflows/workflow-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
steps:
- uses: actions/[email protected]
with:
token: ${{ secrets.GH_INFRAHUB_BOT_TOKEN }}
fetch-depth: 0

- name: Set up Python
Expand Down Expand Up @@ -52,11 +53,10 @@ jobs:
- name: push changelog
uses: github-actions-x/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.GH_INFRAHUB_BOT_TOKEN }}
push-branch: 'stable'
commit-message: 'chore: update changelog'
force-add: 'true'
files: CHANGELOG.rst changelogs/
name: Otto
email: info@opsmill.com
name: opsmill-bot
email: github-bot@opsmill.com
rebase: true
8 changes: 4 additions & 4 deletions .github/workflows/workflow-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_INFRAHUB_BOT_TOKEN }}
fetch-depth: 0

- name: Set up Python
Expand All @@ -20,18 +21,17 @@ jobs:
python-version: 3.11

- name: "Install Invoke"
run: "pip install toml invoke"
run: "pip install toml invoke antsibull-docs"

- name: "Generate Docs"
run: "invoke generate-doc"

- name: commit documentation
uses: github-actions-x/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.GH_INFRAHUB_BOT_TOKEN }}
push-branch: 'stable'
commit-message: 'chore: update documentation'
force-add: 'true'
files: docs/
name: opsmill-bot
email: info@opsmill.com
email: github-bot@opsmill.com
2 changes: 1 addition & 1 deletion .github/workflows/workflow-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

jobs:
sanity-tests:
name: Sanity (Ⓐ$${{ matrix.ansible-version }}-py${{python-version}})
name: Sanity (Ⓐ$${{ matrix.ansible-version }}-py${{ matrix.python-version }})
strategy:
fail-fast: false
matrix:
Expand All @@ -36,7 +36,7 @@
target-python-version: ${{ matrix.python-version }}
testing-type: sanity

# unit-tests:

Check warning on line 39 in .github/workflows/workflow-tests.yml

View workflow job for this annotation

GitHub Actions / linter / yaml-lint

39:3 [comments-indentation] comment not indented like content
# strategy:
# fail-fast: false
# matrix:
Expand Down
Loading