您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
20 行
673 B
20 行
673 B
name: GitHub Jira Update
|
|
on: issue_comment
|
|
jobs:
|
|
On-Issue-Comment:
|
|
runs-on: ubuntu-latest
|
|
name: Issue Comment
|
|
if: ${{!github.event.issue.pull_request}}
|
|
steps:
|
|
- run: echo "Comment on issue #${{github.event.issue.number}}"
|
|
- run :
|
|
AIVTS-19 #comment Issue on comment Testing github action
|
|
|
|
On-Issue-Labeled:
|
|
runs-on: ubuntu-latest
|
|
name: Issue Labeled
|
|
if: ${{!github.event.issue.pull_request}}
|
|
steps:
|
|
- run: echo "Issue Labeled #${{github.event.issue.number}}"
|
|
- run :
|
|
AIVTS-19 #comment Issue on Label Testing github action
|