From bd47e5295f9ec84bd1dd8d5673dbf0cc382db34c Mon Sep 17 00:00:00 2001 From: Matthew Logan <62873746+LocalNewsTV@users.noreply.github.com> Date: Fri, 15 Sep 2023 12:00:09 -0700 Subject: [PATCH] added Labeller action and PR template (#1107) --- .github/PULL_REQUEST_TEMPLATE.md | 13 ++++++++++ .github/labeller.yaml | 40 ++++++++++++++++++++++++++++++ .github/workflows/pr-labeller.yaml | 15 +++++++++++ 3 files changed, 68 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/labeller.yaml create mode 100644 .github/workflows/pr-labeller.yaml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..76bbeead5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,13 @@ +## Pull Request Standards + +- [ ] The title of the PR is accurate +- [ ] The title includes the type of change [`HOTFIX`, `FEATURE`, `etc`] +- [ ] The PR title includes the ticket number in format of `[NRPTI-###]` +- [ ] Documentation is updated to reflect change + +# Description + +This PR includes the following proposed change(s): + +- { List all the changes made } +- { Include any screenshots necessary } diff --git a/.github/labeller.yaml b/.github/labeller.yaml new file mode 100644 index 000000000..6fc0ca1dc --- /dev/null +++ b/.github/labeller.yaml @@ -0,0 +1,40 @@ +# Auto Label Git Action Config +# 'label_name' +# - path_of_diff/where/code_lives/to_base_label_upon + +# Any change to any file in .github/workflows +'GitHub Actions': + - '.github/workflows/*' + +# Any change to the docker-compose file or any dockerfile in the repo +'Docker': + - '**/Dockerfile' + - docker-compose.yml + +# Any changes to file or subfolders in /backend +'Backend': + - 'api/**/*' + +# Any changes to file or subfolders in /frontend +'Frontend': + - 'angular/**/*' + +# Any changes to file or subfolders in /docs +'Docs': + - 'docs/**/*' + +# Any changes to file or subfolders in /scripts +'Scripts': + - 'app/scripts/**/*' + +# Any changes to file or subfolders in /openshift +'OpenShift': + - '**/openshift/**/*' + +# Any changes to file of subfolders in /tests +'Testing': + - 'api/test/**/*' + +# Any change to any file in any directory with a .env in name +'Environment Variables': + - '**/*.env*' diff --git a/.github/workflows/pr-labeller.yaml b/.github/workflows/pr-labeller.yaml new file mode 100644 index 000000000..d98ef3830 --- /dev/null +++ b/.github/workflows/pr-labeller.yaml @@ -0,0 +1,15 @@ +name: "Pull Request Labeler" +on: +- pull_request_target + +jobs: + triage: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v4 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + configuration-path: .github/labeller.yaml