-
-
Notifications
You must be signed in to change notification settings - Fork 79
39 lines (37 loc) · 1.02 KB
/
release-drafter.yml
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
name: Release Drafter
on:
push:
branches:
- main
pull_request_target:
types:
- edited
- opened
- reopened
- synchronize
workflow_dispatch:
jobs:
update_release_draft:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: "Draft Boxed.AspNetCore Release"
uses: release-drafter/[email protected]
with:
config-name: "release-drafter-Boxed.AspNetCore.yml"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: "Draft Boxed.DotnetNewTest Release"
uses: release-drafter/[email protected]
with:
config-name: "release-drafter-Boxed.DotnetNewTest.yml"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: "Draft Boxed.Mapping Release"
uses: release-drafter/[email protected]
with:
config-name: "release-drafter-Boxed.Mapping.yml"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}