fix(git): use global configuration flag #11
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: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
test-action: | |
name: GitHub Actions Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Create dummy file | |
run: | | |
echo 'Hello World' > test-file.txt | |
- name: Execute local action | |
id: test-action | |
uses: ./ | |
with: | |
keeper-secret-config: ${{ secrets.KSM_CONFIG }} | |
- name: Test verified commit | |
run: | | |
git add . | |
git commit -m "Test verified commit" | |
git verify-commit HEAD |