Skip to content
Merged
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/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

jobs:
e2e-tests-olm:
if: "!startsWith(github.event.head_commit.message, 'ci(bot):')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -19,7 +20,7 @@
uses: ./.github/e2e-tests-olm

publish-olm-development:
if: "!startsWith(github.event.head_commit.message, 'chore(release):')"
if: "!startsWith(github.event.head_commit.message, 'chore(release):') && !startsWith(github.event.head_commit.message, 'ci(bot):')"
runs-on: ubuntu-latest
environment: quay
needs:
Expand All @@ -41,7 +42,7 @@

- name: Set version
id: version
run: |

Check notice on line 45 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yaml#L45

shellcheck reported issue in this script: SC2086:info:3:28: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
i:.github/workflows/release.yaml:45:9: shellcheck reported issue in this script: SC2086:info:3:28: Double quote to prevent globbing and word splitting [shellcheck]
npx standard-version --skip.commit --skip.tag --skip.changelog
version="$(cat VERSION)-$(date +%y%m%d%H%M%S)"
echo "version=$version" >> $GITHUB_OUTPUT
Expand Down
Loading