mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-10 11:39:32 -04:00
* Replace `closed_issue_locker` HashiBot action with GitHub action Related to: #11043 * Replace with GitHub action * Replace with GitHub action
16 lines
314 B
YAML
16 lines
314 B
YAML
name: Issue Opened Triage
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
issue_triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: github/issue-labeler@v2
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: .github/labeler-issue-triage.yml
|
|
|