-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔄 created local '.github/workflows/' from remote 'workflows/'
Signed-off-by: bitnami-bot <[email protected]>
- Loading branch information
1 parent
5ee361d
commit a1ef207
Showing
6 changed files
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# 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 | ||
#Â Avoid concurrency over the same issue | ||
concurrency: | ||
group: card-movement-${{ github.event.issue.number }} | ||
jobs: | ||
call-comments-workflow: | ||
uses: bitnami/support/.github/workflows/comment-created.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# 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 | ||
#Â Avoid concurrency over the same issue | ||
concurrency: | ||
group: card-movement-${{ github.event.repository.id }}-${{ github.event.issue != null && github.event.issue.number || github.event.number }} | ||
jobs: | ||
call-move-closed-workflow: | ||
uses: bitnami/support/.github/workflows/item-closed.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 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 | ||
#Â Avoid concurrency over the same issue | ||
concurrency: | ||
group: card-movement-${{ github.event.number }} | ||
jobs: | ||
call-pr-review-workflow: | ||
uses: bitnami/support/.github/workflows/pr-review-requested-sync.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright VMware, Inc. | ||
# SPDX-License-Identifier: APACHE-2.0 | ||
|
||
name: '[Support] Review based card movements' | ||
on: | ||
pull_request_target: | ||
types: | ||
- labeled | ||
issues: | ||
types: | ||
- labeled | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
issues: write | ||
#Â Avoid concurrency over the same issue | ||
concurrency: | ||
group: card-movement-${{ github.event.issue != null && github.event.issue.number || github.event.number }} | ||
jobs: | ||
call-reasign-workflow: | ||
uses: bitnami/support/.github/workflows/item-labeled.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# 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: | ||
issues: | ||
types: | ||
- reopened | ||
- opened | ||
pull_request_target: | ||
types: | ||
- reopened | ||
- opened | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
issues: write | ||
#Â Avoid concurrency over the same issue | ||
concurrency: | ||
group: card-movement-${{ github.event.issue != null && github.event.issue.number || github.event.number }} | ||
jobs: | ||
call-triage-workflow: | ||
uses: bitnami/support/.github/workflows/item-opened.yml@main | ||
secrets: inherit |