Skip to content

Commit

Permalink
update build 209
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Aug 16, 2023
2 parents d0a4f66 + bc55829 commit 779c6fc
Showing 1 changed file with 12 additions and 22 deletions.
34 changes: 12 additions & 22 deletions .github/workflows/production-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,44 +13,34 @@ jobs:
- name: Create issue comment with user_name mention
uses: peter-evans/create-or-update-comment@v3
with:
repository: actions-mention-to-slack/github-actions-test
repository: abeyuya/github-actions-test
token: ${{ secrets.MY_GITHUB_TOKEN }}
issue-number: 7
body: |
hey @abeyuya!
This is a test issue comment from [ci](https://github.com/abeyuya/actions-mention-to-slack/actions/runs/${{ github.run_id }}) to test abeyuya/actions-mention-to-slack.
[${{ github.event.head_commit.message }}](https://github.com/abeyuya/actions-mention-to-slack/commit/${{ github.sha }})
- name: Create issue comment with team_name mention
uses: peter-evans/create-or-update-comment@v3
with:
repository: actions-mention-to-slack/github-actions-test
token: ${{ secrets.MY_GITHUB_TOKEN }}
issue-number: 7
body: |
hey @developer!
This is a test issue comment from [ci](https://github.com/abeyuya/actions-mention-to-slack/actions/runs/${{ github.run_id }}) to test abeyuya/actions-mention-to-slack.
[${{ github.event.head_commit.message }}](https://github.com/abeyuya/actions-mention-to-slack/commit/${{ github.sha }})
```
github.event_name: ${{ github.event_name }}
github.event: ${{ github.event }}
```
comment-to-pull-request:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Create pull request comment with user_name mention
uses: peter-evans/create-or-update-comment@v3
with:
repository: actions-mention-to-slack/github-actions-test
repository: abeyuya/github-actions-test
token: ${{ secrets.MY_GITHUB_TOKEN }}
issue-number: 11
body: |
hey @abeyuya!
This is a test pull-request comment from [ci](https://github.com/abeyuya/actions-mention-to-slack/actions/runs/${{ github.run_id }}) to test abeyuya/actions-mention-to-slack.
[${{ github.event.head_commit.message }}](https://github.com/abeyuya/actions-mention-to-slack/commit/${{ github.sha }})
- name: Create pull request comment with team_name mention
uses: peter-evans/create-or-update-comment@v3
with:
repository: actions-mention-to-slack/github-actions-test
token: ${{ secrets.MY_GITHUB_TOKEN }}
issue-number: 11
body: |
hey @developer!
This is a test pull-request comment from [ci](https://github.com/abeyuya/actions-mention-to-slack/actions/runs/${{ github.run_id }}) to test abeyuya/actions-mention-to-slack.
[${{ github.event.head_commit.message }}](https://github.com/abeyuya/actions-mention-to-slack/commit/${{ github.sha }})
```
github.event_name: ${{ github.event_name }}
github.event: ${{ github.event }}
```

0 comments on commit 779c6fc

Please sign in to comment.