Skip to content

Commit

Permalink
Merge b44ec34 into 24d5917
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathonherbert committed Nov 11, 2020
2 parents 24d5917 + b44ec34 commit 97aad2f
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 282 deletions.
32 changes: 32 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--
If this PR should trigger a release, make sure your title is prefixed with one of these:
- fix: (patch release)
- feat: (minor release)
These can be used but will not trigger a release:
build: | chore: | ci: | docs: | style: | refactor: | perf: | test:
To trigger a major release, add ! to the prefix. Any prefix can do this, e.g.:
- refactor!: drop support for Node 6
- fix!: remove old conflicting method
-->

## What does this change?
<!-- A PR should have enough detail to be understandable far in the future. e.g what is the problem/why is the change needed, how does it solve it and any questions or points of discussion. Prefer copying information from a Trello card over linking to it; the card may not always exist and reviewers may not have access to the board. -->

## How to test
<!-- Provide instructions to help others verify the change. This could take the form of "On PROD, do X and witness Y. On this branch, do X and witness Z. " -->

## How can we measure success?
<!-- Do you expect errors to decrease? Do you expect user journeys to be simplified? What can be used to prove this? A filtered view of logs or analytics, etc? -->

## Have we considered potential risks?
<!-- What are the potential risks and how can they be mitigated? Does an error require an alarm? Should user help, infosec, or legal be informed of this change? Is private information guarded? Do we need to add anything in the backlog? -->

## Images
<!-- Usually only applicable to UI changes, what did it look like before and what will it look like after? -->
File renamed without changes.
15 changes: 15 additions & 0 deletions .github/workflows/semantic-PRs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Lint PR'
on:
pull_request_target:
types:
- opened
- edited
- synchronize

jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v2.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 97aad2f

Please sign in to comment.