mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-15 17:11:40 -08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
79 lines
3.7 KiB
YAML
79 lines
3.7 KiB
YAML
name: Add issues to the roadmap project
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- labeled
|
|
|
|
jobs:
|
|
add-issue-to-roadmap-project:
|
|
name: Add issue to the roadmap project
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# 'kind/feature' AND 'priority/backlog' labels -> 'Backlog' column
|
|
- uses: actions/add-to-project@v1.0.1 # add new issue to project
|
|
with:
|
|
project-url: https://github.com/orgs/aquasecurity/projects/25
|
|
github-token: ${{ secrets.ORG_PROJECT_TOKEN }}
|
|
labeled: kind/feature, priority/backlog
|
|
label-operator: AND
|
|
id: add-backlog-issue
|
|
- uses: titoportas/update-project-fields@v0.1.0 # change Priority(column) of added issue
|
|
if: ${{ steps.add-backlog-issue.outputs.itemId }}
|
|
with:
|
|
project-url: https://github.com/orgs/aquasecurity/projects/25
|
|
github-token: ${{ secrets.ORG_PROJECT_TOKEN }}
|
|
item-id: ${{ steps.add-backlog-issue.outputs.itemId }} # Use the item-id output of the previous step
|
|
field-keys: Priority
|
|
field-values: Backlog
|
|
|
|
# 'kind/feature' AND 'priority/important-longterm' labels -> 'Important (long-term)' column
|
|
- uses: actions/add-to-project@v1.0.1 # add new issue to project
|
|
with:
|
|
project-url: https://github.com/orgs/aquasecurity/projects/25
|
|
github-token: ${{ secrets.ORG_PROJECT_TOKEN }}
|
|
labeled: kind/feature, priority/important-longterm
|
|
label-operator: AND
|
|
id: add-longterm-issue
|
|
- uses: titoportas/update-project-fields@v0.1.0 # change Priority(column) of added issue
|
|
if: ${{ steps.add-longterm-issue.outputs.itemId }}
|
|
with:
|
|
project-url: https://github.com/orgs/aquasecurity/projects/25
|
|
github-token: ${{ secrets.ORG_PROJECT_TOKEN }}
|
|
item-id: ${{ steps.add-longterm-issue.outputs.itemId }} # Use the item-id output of the previous step
|
|
field-keys: Priority
|
|
field-values: Important (long-term)
|
|
|
|
# 'kind/feature' AND 'priority/important-soon' labels -> 'Important (soon)' column
|
|
- uses: actions/add-to-project@v1.0.1 # add new issue to project
|
|
with:
|
|
project-url: https://github.com/orgs/aquasecurity/projects/25
|
|
github-token: ${{ secrets.ORG_PROJECT_TOKEN }}
|
|
labeled: kind/feature, priority/important-soon
|
|
label-operator: AND
|
|
id: add-soon-issue
|
|
- uses: titoportas/update-project-fields@v0.1.0 # change Priority(column) of added issue
|
|
if: ${{ steps.add-soon-issue.outputs.itemId }}
|
|
with:
|
|
project-url: https://github.com/orgs/aquasecurity/projects/25
|
|
github-token: ${{ secrets.ORG_PROJECT_TOKEN }}
|
|
item-id: ${{ steps.add-soon-issue.outputs.itemId }} # Use the item-id output of the previous step
|
|
field-keys: Priority
|
|
field-values: Important (soon)
|
|
|
|
# 'kind/feature' AND 'priority/critical-urgent' labels -> 'Urgent' column
|
|
- uses: actions/add-to-project@v1.0.1 # add new issue to project
|
|
with:
|
|
project-url: https://github.com/orgs/aquasecurity/projects/25
|
|
github-token: ${{ secrets.ORG_PROJECT_TOKEN }}
|
|
labeled: kind/feature, priority/critical-urgent
|
|
label-operator: AND
|
|
id: add-urgent-issue
|
|
- uses: titoportas/update-project-fields@v0.1.0 # change Priority(column) of added issue
|
|
if: ${{ steps.add-urgent-issue.outputs.itemId }}
|
|
with:
|
|
project-url: https://github.com/orgs/aquasecurity/projects/25
|
|
github-token: ${{ secrets.ORG_PROJECT_TOKEN }}
|
|
item-id: ${{ steps.add-urgent-issue.outputs.itemId }} # Use the item-id output of the previous step
|
|
field-keys: Priority
|
|
field-values: Urgent |