Updates for GitHub Actions

This commit is contained in:
Scott Lahteine
2019-12-25 14:57:58 -06:00
parent ee17051933
commit ccdeb3f2cd
7 changed files with 212 additions and 2 deletions

23
.github/workflows/label-pr.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
#
# label-pr.yml
# Automatically close the PR if it's directed to a release branch
#
name: Apply Labels
on:
pull_request:
branches:
- bugfix-1.1.x
- bugfix-2.0.x
- dev-2.1.x
jobs:
apply_labels:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"