-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Managed by Terraform (https://github.com/opsheaven/provisioner)
- Loading branch information
Provisioner User
committed
Feb 25, 2024
1 parent
ac05a3a
commit 5dd6014
Showing
1 changed file
with
27 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,27 @@ | ||
name: 'Verify Pull Request' | ||
|
||
"on": | ||
pull_request: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
permissions: | ||
|
||
jobs: | ||
pre-commit: | ||
runs-on: 'ubuntu-latest' | ||
steps: | ||
- name: 'Checkout' | ||
uses: 'actions/checkout@v4' | ||
|
||
- name: 'Install Repository Specific Tools' | ||
run: make tools | ||
|
||
- name: 'Install Python for Pre-Commit' | ||
uses: 'actions/setup-python@v3' | ||
|
||
- name: 'Verify Files' | ||
uses: 'pre-commit/[email protected]' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |