Prevent email truncating by increasing size of username
column in users
table.
#108
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
name: Detect Merge Commits | |
on: | |
pull_request: | |
branches: | |
- develop | |
- main | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
test: | |
name: Check for merge commits | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run test | |
uses: NexusPHP/no-merge-commits@v2.2.1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |