-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add autosquash automation.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
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,36 @@ | ||
name: autosquash | ||
on: | ||
pull_request: | ||
types: | ||
# omit "opened" as labeling happens after opening | ||
# and when we include both the two events end up | ||
# canceling each other's runs. | ||
- reopened | ||
- edited | ||
- labeled | ||
- synchronize | ||
- unlabeled | ||
- ready_for_review | ||
concurrency: | ||
# only one autosquash at a time per PR | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | ||
cancel-in-progress: true | ||
jobs: | ||
autosquash: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get Token | ||
id: app-token | ||
uses: actions/create-github-app-token@v1 | ||
with: | ||
app-id: ${{ secrets.THM_AUTOMATION_APP_ID }} | ||
private-key: ${{ secrets.THM_AUTOMATION_PRIVATE_KEY }} | ||
- uses: actions/checkout@v4 | ||
- uses: theoremlp/autosquash@v1 | ||
with: | ||
github-token: ${{ steps.app-token.outputs.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" | ||
required-label: "automerge" |