build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.28.8 to 1.28.9 #355
Workflow file for this run
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: system-test-notification | |
on: | |
# This needs to be `pull_request_target` instead of `pull_request` | |
# to be able to write a comment on the pull request. | |
pull_request_target: | |
types: | |
- opened | |
permissions: | |
contents: read | |
jobs: | |
notify: | |
# This job runs only if the pull request is from a forked repository. | |
if: github.event.pull_request.head.repo.fork == true | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add comment | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const { repo, owner } = context.repo | |
await github.rest.issues.createComment({ | |
owner, | |
repo, | |
issue_number: context.issue.number, | |
body: ` | |
### :warning: Warning | |
System-tests will not be executed for this PR because it is from a forked repository. | |
But it will still create a successful \`run-system-tests\` status check. | |
` | |
}); |