Bump github.com/onsi/ginkgo/v2 from 2.12.0 to 2.12.1 #12
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: Acknowledge | |
on: | |
issues: | |
types: [opened] | |
pull_request: | |
branches: [main] | |
types: [opened] | |
jobs: | |
greeting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment pull request | |
uses: actions/github-script@v6 | |
if: github.event_name == 'pull_request' || github.user.login != 'jahvon' || github.user.login != 'dependabot[bot]' | |
with: | |
# Comment as whoever you want using `secrets.TAP_GITHUB_TOKEN` or GitHub bot if not set. | |
github-token: ${{ secrets.TAP_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} | |
script: | | |
let output = `Hello! | |
Thank you for your contribution to [flow](https://github.com/jahvon/flow). | |
If you are fixing a bug, please reference the issue number in the description. | |
I will try to review your contribution as soon as possible. | |
Thanks, | |
Jahvon | |
` | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: output | |
}) | |
- name: Comment issue | |
uses: actions/github-script@v6 | |
if: github.event_name != 'pull_request' || github.user.login != 'jahvon' || github.user.login != 'dependabot[bot]' | |
with: | |
# Comment as whoever you want using `secrets.TAP_GITHUB_TOKEN` or GitHub bot if not set. | |
github-token: ${{ secrets.TAP_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} | |
script: | | |
let output = `:wave: Hello! | |
Thank you for filing an issue. | |
If this is a bug report, please include relevant logs to help me debug the problem. | |
I will work on this as soon as possible. | |
Thanks, | |
Jahvon | |
` | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: output | |
}) |