Skip to content

Commit

Permalink
Fixed workflow test.
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel.butuzov committed Feb 2, 2024
1 parent c2631a8 commit 8ca10ee
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name-template: 'v$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
- title: '🚀 Features'
labels:
- 'enhancement'

- title: '🐛 Bug Fixes'
labels:
- 'bug'

- title: '🧾 Documentation'
labels:
- 'type:documentation'

- title: '🧪 Tests'
labels:
- 'tests'

change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
## Changes
$CHANGES
13 changes: 13 additions & 0 deletions .github/workflows/label-verifier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "Verify type labels"

on:
pull_request:
types: [opened, labeled, unlabeled, synchronize]

jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: zwaldowski/match-label-action@v4
with:
allowed_multiple: enhancement, bug, documentation, tests
13 changes: 13 additions & 0 deletions .github/workflows/release-draft.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "Create draft release"

on:
push:
branches: [ "main" ]

jobs:
update_draft_release:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
DOTNET_VERSION: 8
GITHUB_PAT: ${{ secrets.SERVICE_ACCOUNT_TOKEN }}
GOLANG_VERSION: 1.21
GOLANG_VERSION: 1.21.0
PYTHON_VERSION: 3.12
TEMP_FILE: tmp/output.txt
TMS_ADAPTER_MODE: 1
Expand Down

0 comments on commit 8ca10ee

Please sign in to comment.