From 54887be5ba4b2d34ff710134c106efb61ad578cd Mon Sep 17 00:00:00 2001 From: Daniel Loureiro Date: Fri, 6 Dec 2024 17:10:02 +0000 Subject: [PATCH 1/2] :white_check_mark: test(ci): add bash-aliases to CI tests --- .github/workflows/test.yaml | 2 ++ 1 file changed, 2 insertions(+) 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 From 690b4fb81958015208c7c19c948eaa78db7e1ac7 Mon Sep 17 00:00:00 2001 From: Daniel Loureiro Date: Fri, 6 Dec 2024 17:13:06 +0000 Subject: [PATCH 2/2] :wrench: chore(update-documentation): adopt conventional commit with gitmoji and fix YAML lint error --- .github/workflows/update-documentation.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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