We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88c740f commit 9211718Copy full SHA for 9211718
1 file changed
.github/workflows/pattern-checker.yml
@@ -0,0 +1,25 @@
1
+name: Pattern Check
2
+
3
+on:
4
+ pull_request_target:
5
+ branches: [ master ]
6
7
+permissions:
8
+ pull-requests: write
9
10
+jobs:
11
+ pattern-check:
12
+ name: Pattern Check
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout github-actions
17
+ uses: actions/checkout@v6
18
+ with:
19
+ repository: linuxmint/github-actions
20
+ path: _github-actions
21
22
+ - name: Pattern Check
23
+ uses: ./_github-actions/pattern-checker
24
25
+ github_token: ${{ github.token }}
0 commit comments