Update dependency pytest to v7.4.4 #95
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: Post link to public end-to-end test repository | |
on: | |
pull_request_target: | |
types: | |
- opened | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- run: | | |
gh pr comment ${LINK} --body-file - <<EOF | |
[End-to-end public repo](https://github.com/mihcaojwe/python-coverage-comment-action-end-to-end-${NUMBER}-public) | |
Other commands: | |
- Have an admin approve a review with /e2e to trigger end-to-end tests on external contributions | |
- Comment with /invite to invite the author & admins to the end-to-end private repo | |
EOF | |
env: | |
LINK: ${{ github.event.pull_request.html_url }} | |
NUMBER: ${{ github.event.pull_request.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |