-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into gh-issue52238
- Loading branch information
Showing
2,180 changed files
with
16,840 additions
and
20,632 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,10 @@ | ||
# Copyright VMware, Inc. | ||
# SPDX-License-Identifier: APACHE-2.0 | ||
|
||
version: 2 | ||
# Check for updates to GitHub Actions every week | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file was deleted.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
@@ -1,54 +1,19 @@ | ||
# Copyright VMware, Inc. | ||
# SPDX-License-Identifier: APACHE-2.0 | ||
|
||
name: '[Support] Comments based card movements' | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
# Remove all permissions by default | ||
permissions: {} | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
issues: write | ||
# Avoid concurrency over the same issue | ||
concurrency: | ||
group: card-movement-${{ github.event.issue.number }} | ||
jobs: | ||
comments_handler: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
repository-projects: write | ||
issues: read | ||
pull-requests: read | ||
steps: | ||
- name: Repo checkout | ||
uses: actions/checkout@v3 | ||
- name: Load .env file | ||
uses: xom9ikk/dotenv@v2 | ||
with: | ||
path: .github/workflows/ | ||
- name: Move into Pending | ||
uses: peter-evans/create-or-update-project-card@v2 | ||
if: | | ||
(github.actor != 'bitnami-bot' || github.event.issue.user.login != 'bitnami-bot' || github.event.issue.pull_request == null) && | ||
contains(fromJson(env.BITNAMI_TEAM), github.actor) && | ||
(!contains(github.event.issue.labels.*.name, 'bitnami')) | ||
with: | ||
project-name: Support | ||
column-name: Pending | ||
- name: Move into In Progress | ||
uses: peter-evans/create-or-update-project-card@v2 | ||
if: | | ||
(github.actor != 'bitnami-bot' || github.event.issue.user.login != 'bitnami-bot' || github.event.issue.pull_request == null) && | ||
(!contains(fromJson(env.BITNAMI_TEAM), github.actor)) && | ||
contains(github.event.issue.labels.*.name, 'in-progress') | ||
with: | ||
project-name: Support | ||
column-name: In progress | ||
- name: Move into Triage | ||
uses: peter-evans/create-or-update-project-card@v2 | ||
if: | | ||
(github.actor != 'bitnami-bot' || github.event.issue.user.login != 'bitnami-bot' || github.event.issue.pull_request == null) && | ||
(!contains(fromJson(env.BITNAMI_TEAM), github.actor)) && | ||
(!contains(github.event.issue.labels.*.name, 'in-progress')) | ||
with: | ||
project-name: Support | ||
column-name: Triage | ||
# Needs reasignation of the task | ||
token: "${{ secrets.BITNAMI_BOT_TOKEN }}" | ||
call-comments-workflow: | ||
uses: bitnami/support/.github/workflows/comment-created.yml@main | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.