-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CODEOWNERS and autosquash (#111)
- Loading branch information
1 parent
2a1cd78
commit f2aecf1
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# require code review for everything except versions | ||
.github @markelliot | ||
.spotless @markelliot | ||
*/src/ @markelliot | ||
readme.md @markelliot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: autosquash | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronized | ||
- reopened | ||
- edited | ||
- labeled | ||
- unlabeled | ||
- ready_for_review | ||
jobs: | ||
autosquash: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: theoremlp/autosquash@v1 | ||
with: | ||
github-token: ${{ secrets.GH_PUSH_TO_REPO_TOKEN }} | ||
pull-request-number: ${{ github.event.pull_request.number }} | ||
squash-commit-title: "${{ github.event.pull_request.title }} (#${{ github.event.pull_request.number }})" | ||
squash-commit-message: "${{ github.event.pull_request.body }}" | ||
do-not-merge-label: "do not merge" |