2021-02-06 07:07:22 +08:00
|
|
|
name: On Comment
|
2020-03-16 23:12:54 +08:00
|
|
|
on:
|
|
|
|
issue_comment:
|
|
|
|
types: [created]
|
2020-03-13 06:55:49 +08:00
|
|
|
|
2020-04-09 02:47:36 +08:00
|
|
|
# also make changes in ./on-label.yml
|
2020-03-16 23:12:54 +08:00
|
|
|
jobs:
|
|
|
|
main:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Actions
|
2023-09-13 00:04:53 +08:00
|
|
|
uses: actions/checkout@v4
|
2020-03-16 23:12:54 +08:00
|
|
|
with:
|
2020-11-24 18:44:18 +08:00
|
|
|
repository: "microsoft/vscode-github-triage-actions"
|
2020-04-09 02:47:36 +08:00
|
|
|
path: ./actions
|
2021-02-06 06:57:41 +08:00
|
|
|
ref: stable
|
2020-04-07 13:09:13 +08:00
|
|
|
- name: Install Actions
|
2020-04-09 02:47:36 +08:00
|
|
|
run: npm install --production --prefix ./actions
|
2020-03-19 01:21:25 +08:00
|
|
|
- name: Run Commands
|
2020-04-09 02:47:36 +08:00
|
|
|
uses: ./actions/commands
|
2020-03-19 01:21:25 +08:00
|
|
|
with:
|
2020-06-10 15:35:36 +08:00
|
|
|
appInsightsKey: ${{secrets.TRIAGE_ACTIONS_APP_INSIGHTS}}
|
2020-03-19 01:21:25 +08:00
|
|
|
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
|
|
|
|
config-path: commands
|
2021-02-06 07:07:22 +08:00
|
|
|
- name: "Run Release Pipeline Labeler"
|
|
|
|
uses: ./actions/release-pipeline
|
|
|
|
with:
|
|
|
|
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
|
|
|
|
appInsightsKey: ${{secrets.TRIAGE_ACTIONS_APP_INSIGHTS}}
|
|
|
|
notYetReleasedLabel: unreleased
|
|
|
|
insidersReleasedLabel: insiders-released
|