diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4bbd248..1042448 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,6 +14,7 @@ jobs: matrix: features: - uv + - bash-aliases baseImage: - debian:latest - ubuntu:latest @@ -34,6 +35,7 @@ jobs: matrix: features: - uv + - bash-aliases steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/update-documentation.yaml b/.github/workflows/update-documentation.yaml index 6b70b88..32193bc 100644 --- a/.github/workflows/update-documentation.yaml +++ b/.github/workflows/update-documentation.yaml @@ -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 @@ -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 @@ -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