mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-23 00:11:41 -04:00
To assist in tracking newly created issues and pull-requests a new set of actions is being added to assign inbound request to a new project board. Where the team can view, filter, and organize in bound requests across all Packer repos.
27 lines
700 B
YAML
27 lines
700 B
YAML
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
issue_triage:
|
|
name: Issue Opened Triage
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: github/[email protected]
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: .github/labeler-issue-triage.yml
|
|
enable-versioned-regex: 0
|
|
add-to-project:
|
|
name: Add issue to request queue
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/add-to-project@main
|
|
with:
|
|
project-url: https://github.com/orgs/hashicorp/projects/105
|
|
github-token: ${{ secrets.PACKER_PROJ_BOARD_TOKEN }}
|
|
labeled: bug, enhancement
|
|
label-operator: OR
|
|
|