-
Notifications
You must be signed in to change notification settings - Fork 0
137 lines (134 loc) · 4.35 KB
/
release-drafter.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: Release Drafter
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
# (Optional) GitHub Enterprise requires GHE_HOST variable set
#- name: Set GHE_HOST
# run: |
# echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV
- name: Checkout code
uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
aws:
- 'aws/**'
cerrors:
- 'cerrors/**'
envlookup:
- 'envlookup/**'
errgroup:
- 'errgroup/**'
osext:
- 'osext/**'
sql-escape:
- 'sql-escape/**'
tspb_cast:
- 'tspb_cast/**'
ulid:
- 'ulid/**'
utf8bom:
- 'utf8bom/**'
hashutil:
- 'hashutil/**'
- uses: release-drafter/release-drafter@v6
if: steps.changes.outputs.aws == 'true'
with:
config-name: release-drafter-aws.yml
name: aws/v$RESOLVED_VERSION
tag: aws/v$RESOLVED_VERSION
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: release-drafter/release-drafter@v6
if: steps.changes.outputs.cerrors == 'true'
with:
config-name: release-drafter-cerrors.yml
name: cerrors/v$RESOLVED_VERSION
tag: cerrors/v$RESOLVED_VERSION
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: release-drafter/release-drafter@v6
if: steps.changes.outputs.envlookup == 'true'
with:
config-name: release-drafter-envlookup.yml
name: envlookup/v$RESOLVED_VERSION
tag: envlookup/v$RESOLVED_VERSION
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: release-drafter/release-drafter@v6
if: steps.changes.outputs.errgroup == 'true'
with:
config-name: release-drafter-errgroup.yml
name: errgroup/v$RESOLVED_VERSION
tag: errgroup/v$RESOLVED_VERSION
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: release-drafter/release-drafter@v6
if: steps.changes.outputs.osext == 'true'
with:
config-name: release-drafter-osext.yml
name: osext/v$RESOLVED_VERSION
tag: osext/v$RESOLVED_VERSION
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: release-drafter/release-drafter@v6
if: steps.changes.outputs.sql-escape == 'true'
with:
config-name: release-drafter-sql-escape.yml
name: sql-escape/v$RESOLVED_VERSION
tag: sql-escape/v$RESOLVED_VERSION
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: release-drafter/release-drafter@v6
if: steps.changes.outputs.tspb_cast == 'true'
with:
config-name: release-drafter-tspb_cast.yml
name: tspb_cast/v$RESOLVED_VERSION
tag: tspb_cast/v$RESOLVED_VERSION
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: release-drafter/release-drafter@v6
if: steps.changes.outputs.ulid == 'true'
with:
config-name: release-drafter-ulid.yml
name: ulid/v$RESOLVED_VERSION
tag: ulid/v$RESOLVED_VERSION
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: release-drafter/release-drafter@v6
if: steps.changes.outputs.utf8bom == 'true'
with:
config-name: release-drafter-utf8bom.yml
name: utf8bom/v$RESOLVED_VERSION
tag: utf8bom/v$RESOLVED_VERSION
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: release-drafter/release-drafter@v6
if: steps.changes.outputs.hashutil == 'true'
with:
config-name: release-drafter-hashutil.yml
name: hashutil/v$RESOLVED_VERSION
tag: hashutil/v$RESOLVED_VERSION
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}