Skip to content
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
2 changes: 2 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
matrix:
features:
- uv
- bash-aliases
baseImage:
- debian:latest
- ubuntu:latest
Expand All @@ -34,6 +35,7 @@ jobs:
matrix:
features:
- uv
- bash-aliases
steps:
- uses: actions/checkout@v4

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update-documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
permissions:
contents: write
pull-requests: write
if: "github.ref == 'refs/heads/main'"
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4

Expand All @@ -38,11 +38,11 @@ jobs:

branch=automated-documentation-update-$GITHUB_RUN_ID
git checkout -b $branch
message='📄 Automated documentation update'
message='📝 docs: automated update of feature READMEs [skip ci]'

# Add / update and commit
git add */**/README.md
git commit -m '📝 docs: automated update of feature READMEs [skip ci]' || export NO_UPDATES=true
git commit -m "$message" || export NO_UPDATES=true

# Push
if [ "$NO_UPDATES" != "true" ] ; then
Expand All @@ -61,7 +61,7 @@ jobs:

if [ -n "$pr_number" ]; then
# Merge the PR
gh pr merge $pr_number --auto --squash --delete-branch --subject "📄 Automated documentation update"
gh pr merge $pr_number --auto --squash --delete-branch --subject "📝 docs: automated update of feature READMEs [skip ci]"
else
echo "No Pull Request found to merge."
fi