Skip to content

Commit

Permalink
Bump thollander/actions-comment-pull-request from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [thollander/actions-comment-pull-request](https://github.com/thollander/actions-comment-pull-request) from 2 to 3.
- [Release notes](https://github.com/thollander/actions-comment-pull-request/releases)
- [Commits](thollander/actions-comment-pull-request@v2...v3)

---
updated-dependencies:
- dependency-name: thollander/actions-comment-pull-request
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 14, 2024
1 parent 01c0a67 commit 7f9d4e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/comment_diffend_io_links_to_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
echo "pr_number=$(cat comment_text_and_pr_number/pr_number.txt)" >> $GITHUB_ENV
- name: Add Comment to PR
uses: thollander/actions-comment-pull-request@v2
uses: thollander/actions-comment-pull-request@v3
with:
filePath: comment_text_and_pr_number/comment_text.txt
pr_number: ${{ env.pr_number }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/warn_about_migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ jobs:
echo "pr_number=$(cat migrations_artifacts/pr_number.txt)" >> $GITHUB_ENV
- name: Add comment about migration to PR
uses: thollander/actions-comment-pull-request@v2
uses: thollander/actions-comment-pull-request@v3
if: ${{ hashFiles('migrations_artifacts/comment_text_migrations.txt') != '' }}
with:
filePath: migrations_artifacts/comment_text_migrations.txt
pr_number: ${{ env.pr_number }}
comment_tag: comment_about_migrations

- name: Add comment about missing db schema to PR
uses: thollander/actions-comment-pull-request@v2
uses: thollander/actions-comment-pull-request@v3
if: ${{ hashFiles('migrations_artifacts/comment_text_db_schema.txt') != '' }}
with:
filePath: migrations_artifacts/comment_text_db_schema.txt
pr_number: ${{ env.pr_number }}
comment_tag: comment_about_db_schema

- name: Add comment about missing data schema to PR
uses: thollander/actions-comment-pull-request@v2
uses: thollander/actions-comment-pull-request@v3
if: ${{ hashFiles('migrations_artifacts/comment_text_data_schema.txt') != '' }}
with:
filePath: migrations_artifacts/comment_text_data_schema.txt
Expand Down

0 comments on commit 7f9d4e5

Please sign in to comment.