Add github workflows.

This commit is contained in:
Dermot Duffy
2021-08-17 20:48:17 -07:00
parent abca09c3db
commit 5dfe8fad62
4 changed files with 135 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
---
name: Manage labels
on:
push:
branches:
- master
workflow_dispatch:
jobs:
labeler:
name: Labeler
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2.3.4
- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v3.1.1
with:
skip-delete: true
+18
View File
@@ -0,0 +1,18 @@
---
name: Draft a release note
on:
push:
branches:
- master
workflow_dispatch:
jobs:
draft_release:
name: Release Drafter
runs-on: ubuntu-latest
steps:
- name: Run release-drafter
uses: release-drafter/release-drafter@v5.15.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}