mirror of
https://github.com/bitnami/minideb.git
synced 2026-06-04 10:13:55 +08:00
🔄 synced local '.github/workflows/' with remote 'workflows/' (#153)
Signed-off-by: bitnami-bot <bitnami-bot@vmware.com>
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
# Copyright VMware, Inc.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
|
||||
name: '[Support] Comments based card movements'
|
||||
on:
|
||||
issue_comment:
|
||||
types:
|
||||
- created
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
issues: write
|
||||
jobs:
|
||||
call-comments-workflow:
|
||||
uses: bitnami/support/.github/workflows/comment-created.yml@main
|
||||
secrets: inherit
|
||||
@@ -0,0 +1,17 @@
|
||||
# Copyright VMware, Inc.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
|
||||
name: '[Support] Cards migration'
|
||||
on: [ workflow_dispatch ]
|
||||
permissions: {}
|
||||
jobs:
|
||||
call-migration-workflow:
|
||||
uses: bitnami/support/.github/workflows/migrate-reusable.yml@main
|
||||
with:
|
||||
organization: bitnami
|
||||
legacy_project_board_name: Support
|
||||
new_project_number: 4
|
||||
repo: ${{ github.event.repository.name }}
|
||||
secrets:
|
||||
# This token should have access to both projects and at least read:project permissions
|
||||
token: ${{ secrets.MIGRATION_TOKEN }}
|
||||
@@ -0,0 +1,18 @@
|
||||
# Copyright VMware, Inc.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
|
||||
name: '[Support] Move closed issues'
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- closed
|
||||
pull_request_target:
|
||||
types:
|
||||
- closed
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
jobs:
|
||||
call-move-closed-workflow:
|
||||
uses: bitnami/support/.github/workflows/item-closed.yml@main
|
||||
secrets: inherit
|
||||
@@ -0,0 +1,15 @@
|
||||
# Copyright VMware, Inc.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
|
||||
name: '[Support] Review based card movements'
|
||||
on:
|
||||
pull_request_target:
|
||||
types:
|
||||
- review_requested
|
||||
- synchronize
|
||||
permissions:
|
||||
contents: read
|
||||
jobs:
|
||||
call-pr-review-workflow:
|
||||
uses: bitnami/support/.github/workflows/pr-review-requested-sync.yml@main
|
||||
secrets: inherit
|
||||
@@ -0,0 +1,19 @@
|
||||
# Copyright VMware, Inc.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
|
||||
name: '[Support] Review based card movements'
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- labeled
|
||||
issues:
|
||||
types:
|
||||
- labeled
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
issues: write
|
||||
jobs:
|
||||
call-reasign-workflow:
|
||||
uses: bitnami/support/.github/workflows/item-labeled.yml@main
|
||||
secrets: inherit
|
||||
@@ -1,3 +1,6 @@
|
||||
# Copyright VMware, Inc.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
|
||||
# This workflow is built to manage the triage support by using GH issues.
|
||||
name: '[Support] Organize triage'
|
||||
on:
|
||||
@@ -10,18 +13,10 @@ on:
|
||||
- reopened
|
||||
- opened
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
issues: write
|
||||
|
||||
jobs:
|
||||
# For any opened or reopened issue, should be assign to a team member
|
||||
team_assignation:
|
||||
if: ${{ github.actor != 'bitnami-bot' }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Assign to a person to work on it
|
||||
uses: pozil/auto-assign-issue@v1.9.0
|
||||
with:
|
||||
numOfAssignee: 1
|
||||
removePreviousAssignees: false
|
||||
teams: "containers-triage"
|
||||
repo-token: "${{ secrets.BITNAMI_BOT_TOKEN }}"
|
||||
call-triage-workflow:
|
||||
uses: bitnami/support/.github/workflows/item-opened.yml@main
|
||||
secrets: inherit
|
||||
Reference in New Issue
Block a user