chore: chore

This commit is contained in:
2025-10-11 13:24:03 +02:00
parent 0f5b9ea817
commit c8f8dd1cf3

View File

@@ -21,14 +21,17 @@ jobs:
env:
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
run: |
if [[ "${COMMIT_MESSAGE}" == "#bot-message: *" ]]; then
echo "CHECK: '${{ env.COMMIT_MESSAGE }}'"
if [[ "${{ env.COMMIT_MESSAGE }}" == "#bot-message: *" ]]; then
echo "FOUND: '#bot-message: '"
echo "BOT_MESSAGE=${BOT_MESSAGE}" >> "${GITHUB_ENV}"
else
echo "NOT FOUND: '#bot-message: '"
echo 'BOT_MESSAGE=' >> "${GITHUB_ENV}"
fi
build:
runs-on: ubuntu-latest
if: ${{ vars.BOT_MESSAGE == true }}
if: ${{ vars.BOT_MESSAGE == 'true' }}
steps:
- uses: actions/checkout@v4
with: