Skip to content

Commit 0d6388b

Browse files
authored
Merge pull request #10 from shamimice03/main
Updated workflow
2 parents 4d2cf74 + 878ab6f commit 0d6388b

File tree

3 files changed

+44
-1
lines changed

3 files changed

+44
-1
lines changed

.github/release-drafter-config.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name-template: 'v$RESOLVED_VERSION'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
categories:
4+
- title: '🚀 Features'
5+
labels:
6+
- 'feature'
7+
- 'enhancement'
8+
- title: '🐛 Bug Fixes'
9+
labels:
10+
- 'fix'
11+
- 'bugfix'
12+
- 'bug'
13+
- title: 'Documentation'
14+
label:
15+
- 'documentation'
16+
- 'docs'
17+
change-template: '- $TITLE, by @$AUTHOR (#$NUMBER)'
18+
template: |
19+
# What's changed
20+
21+
$CHANGES
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release Drafter
2+
3+
permissions:
4+
contents: write
5+
pull-requests: read
6+
7+
on:
8+
push:
9+
branches:
10+
- main
11+
12+
# pull_request:
13+
# types: [opened, reopened, synchronize, labeled]
14+
15+
jobs:
16+
update_release_draft:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: release-drafter/release-drafter@v5
20+
with:
21+
config-name: release-drafter-config.yml
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}

main.tf

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ module "vpc" {
2323
}
2424
}
2525

26-
2726
#################################################
2827
# Security groups
2928
#################################################

0 commit comments

Comments
 (0)