Skip to content

Commit

Permalink
bump: version 0.6.11 → 0.6.12
Browse files Browse the repository at this point in the history
  • Loading branch information
commitizen-github-action[bot] committed Oct 14, 2022
1 parent 8fd5fad commit c7982d3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
This changelog is auto-generated by the Python-based
[Commitizen](https://commitizen-tools.github.io/commitizen).

## 0.6.12 (2022-10-14)

### Fix

- **action**: Port from set-output to env files

## 0.6.11 (2022-10-13)

### Fix
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ because merges will be indistinguishable from direct pushes.
```yaml
- name: Send Slack notification with job status.
if: always()
uses: ScribeMD/slack-templates@0.6.11
uses: ScribeMD/slack-templates@0.6.12
with:
bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }}
channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }}
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Send Slack notification with workflow result.
uses: ScribeMD/slack-templates@0.6.11
uses: ScribeMD/slack-templates@0.6.12
with:
bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }}
channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }}
Expand All @@ -165,7 +165,7 @@ jobs:
shell: bash
- name: Send Slack notification with custom result.
if: always() && steps.network.outputs.OUTAGE == 'true'
uses: ScribeMD/slack-templates@0.6.11
uses: ScribeMD/slack-templates@0.6.12
with:
bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }}
channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }}
Expand All @@ -186,7 +186,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Send Slack notification requesting code review.
uses: ScribeMD/slack-templates@0.6.11
uses: ScribeMD/slack-templates@0.6.12
with:
bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }}
channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }}
Expand All @@ -206,7 +206,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Send Slack notification assigning pull request.
uses: ScribeMD/slack-templates@0.6.11
uses: ScribeMD/slack-templates@0.6.12
with:
bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }}
channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }}
Expand All @@ -218,7 +218,7 @@ jobs:
```yaml
- name: Send custom Slack notification.
if: always()
uses: ScribeMD/slack-templates@0.6.11
uses: ScribeMD/slack-templates@0.6.12
with:
bot-token: ${{ secrets.SLACK_TEMPLATES_BOT_TOKEN }}
channel-id: ${{ secrets.SLACK_TEMPLATES_CHANNEL_ID }}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api"
target-version = ["py310"]

[tool.commitizen]
version = "0.6.11"
version = "0.6.12"
version_files = [
"pyproject.toml:version",
"README.md:slack-templates@"
Expand All @@ -28,7 +28,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "slack-templates"
version = "0.6.11"
version = "0.6.12"
description = "Send Informative, Concise Slack Notifications With Minimal Effort"
authors = ["Kurt von Laven <kurt.von.laven@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit c7982d3

Please sign in to comment.