We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4503b commit 1464165Copy full SHA for 1464165
.github/workflows/no-merge-commits.yml
@@ -0,0 +1,22 @@
1
+name: Detect Merge Commits
2
+
3
+on:
4
+ pull_request:
5
6
+permissions:
7
+ contents: read
8
+ pull-requests: read
9
10
+jobs:
11
+ test:
12
+ name: Check for merge commits
13
+ runs-on: ubuntu-22.04
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v3
18
19
+ - name: Run test
20
+ uses: NexusPHP/no-merge-commits@v1.2.0
21
+ with:
22
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments