Skip to content

Commit b23d9c1

Browse files
committed
Add basic GitHub workflows.
This is needed to trigger CI in the PR that adds the new SemanticDB compiler plugin.
1 parent 0b0a833 commit b23d9c1

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/release-drafter.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
template: |
2+
## Pull Requests
3+
4+
$CHANGES
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
update_release_draft:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: release-drafter/release-drafter@v5
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)