Skip to content

Commit

Permalink
test 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jreij committed Dec 11, 2024
1 parent bd2ba76 commit a07a861
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/update_verification_metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
update-verification-metadata:
name: Update verification metadata
runs-on: ubuntu-latest
if: ${{ !contains(github.event.commits[0].message, '[skip update-verification-metadata]') }}

steps:
- uses: actions/checkout@v4
Expand All @@ -35,7 +36,12 @@ jobs:

- name: Commit
run: |
echo ${{ github.event.commits[0].message }}
touch test_file.txt
git config --global user.name "${{ secrets.ADYEN_AUTOMATION_BOT_USER }}"
git config --global user.email "${{ secrets.TOKEN_EMAIL }}"
git add .
git diff-index --quiet HEAD || git commit -am 'Update verification metadata'
git diff-index --quiet HEAD || git commit -m "Update verification metadata
[skip update-verification-metadata]"
git push

0 comments on commit a07a861

Please sign in to comment.