update triage rules

This commit is contained in:
Maxim Lobanov
2020-03-31 09:52:53 +03:00
parent e91f2138c0
commit 6f5ac4b86b
2 changed files with 3 additions and 37 deletions

View File

@@ -13,13 +13,13 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: damccorm/tag-ur-it@master
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: "./triage-rules.yml"
- if: failure()
- if: always()
uses: actions/github-script@0.4.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}
@@ -29,12 +29,4 @@ jobs:
owner: context.owner,
repo: context.repo,
labels: ['needs triage']
})
- name: Set Node.js 10.x
uses: actions/setup-node@master
with:
version: 10.x
# Need to explicitly install @octokit/rest separately or else it will mess with our typings.
- run: npm install && npm install @octokit/rest
})