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 a60b622 commit 67648e7Copy full SHA for 67648e7
.github/workflows/commitlint.yml
@@ -7,6 +7,22 @@ on:
7
8
jobs:
9
commit-lint:
10
- uses: UiPath/.github/.github/workflows/commit-lint.yml@master
11
- secrets:
12
- token: ${{ secrets.GITHUB_TOKEN }}
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
13
+ uses: actions/checkout@v2
14
+ with:
15
+ fetch-depth: 0
16
+
17
+ - name: Lint commits
18
+ uses: wagoid/commitlint-github-action@v3
19
20
+ - name: Block fixup commits
21
+ if: ${{ github.event_name != 'merge_group' }}
22
+ uses: 13rac1/block-fixup-merge-action@v2.0.0
23
24
+ - name: Block Merge Commits
25
26
+ uses: Morishiri/block-merge-commits-action@v1.0.1
27
28
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments