Skip to content

Commit

Permalink
#19: Removed slack notifications for events other than schedule (#48)
Browse files Browse the repository at this point in the history
* #19: Removed slack notifications for events other than schedule
* Marked file version.py as generated
  • Loading branch information
ckunki authored May 21, 2024
1 parent 6bad277 commit 8d2a507
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/exasol/saas/client/openapi/** linguist-generated
/exasol/saas/client/openapi/** linguist-generated
/version.py linguist-generated
4 changes: 2 additions & 2 deletions .github/workflows/check-api-outdated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:

check-api-outdated:
check-api-outdated:
name: Check if OpenAPI Generated From JSON is Outdated
runs-on: ubuntu-latest
strategy:
Expand All @@ -35,7 +35,7 @@ jobs:
run: poetry run nox -s check-api-outdated

- name: Report Failure Status to Slack Channel
if: ${{ failure() }}
if: ${{ failure() && github.event_name == 'schedule' }}
uses: ravsamhq/notify-slack-action@v2
with:
status: ${{ job.status }}
Expand Down
6 changes: 6 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# Unreleased

This release removes slack notifications for events other than `schedule`.

## Refactoring

* #19: Removed slack notifications for events other than `schedule`
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "exasol-saas-api"
version = "0.5.0"
version = "0.6.0"
description = "API enabling Python applications connecting to Exasol database SaaS instances and using their SaaS services"
packages = [ {include = "exasol"}, ]
authors = [ "Christoph Kuhnke <[email protected]>" ]
Expand Down
2 changes: 1 addition & 1 deletion version.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8d2a507

Please sign in to comment.