Skip to content

Commit

Permalink
Attempt to allow PR to ignore status checks of PR-validation-generate…
Browse files Browse the repository at this point in the history
…d commit
  • Loading branch information
mluypaert committed May 29, 2024
1 parent 2ebcf43 commit 21199de
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/PR-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,17 @@ jobs:
name: pipeline_seq_retrieval_tests_deps_lock
path: pipeline/seq_retrieval/tests
# Commit all changed dependency lock files back to the open PR
- name: define commit message
id: commit_message_step
run: |
echo 'commit_message<<EOF' >> $GITHUB_OUTPUT
echo 'Auto-updated deps lock files.' >> $GITHUB_OUTPUT
echo '' >> $GITHUB_OUTPUT
echo '' >> $GITHUB_OUTPUT
echo 'skip-checks: true' >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Auto-updated deps lock files
commit_message: ${{ steps.commit_message_step.outputs.commit_message }}
file_pattern: '*/requirements.txt'
disable_globbing: true

0 comments on commit 21199de

Please sign in to comment.