update build 212 #194
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: Production test | |
on: | |
push: | |
branches: | |
- release | |
jobs: | |
comment-to-issue: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Create issue comment with user_name mention | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
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 }}) | |
``` | |
github.event_name: ${{ github.event_name }} | |
``` | |
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: 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 }}) | |
``` | |
github.event_name: ${{ github.event_name }} | |
``` |