mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-07 13:55:20 +00:00
Per https://github.com/alex-page/github-project-automation-plus/issues/51, the `GITHUB_TOKEN` secret doesn't have the appropriate permissions to manage the issue workflows at a repo level. Reverting to the previous secret to get the workflows working again. Signed-off-by: Nolan Brubaker <brubakern@vmware.com>
16 lines
330 B
YAML
16 lines
330 B
YAML
name: Move new issues into Triage
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
automate-project-columns:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: alex-page/github-project-automation-plus@v0.3.0
|
|
with:
|
|
project: "Velero Support Board"
|
|
column: "New"
|
|
repo-token: ${{ secrets.GH_TOKEN }}
|