From bc69a8c2e9b832c413c91eb1cf84dca6f4462906 Mon Sep 17 00:00:00 2001 From: "Vishal Koparde, PhD" Date: Wed, 4 Oct 2023 11:00:15 -0400 Subject: [PATCH] adding basic github actions --- .../workflows/auto_add_issues_to_user_kanban.yaml | 14 ++++++++++++++ .github/workflows/auto_add_reponame_labels.yaml | 10 ++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .github/workflows/auto_add_issues_to_user_kanban.yaml create mode 100644 .github/workflows/auto_add_reponame_labels.yaml diff --git a/.github/workflows/auto_add_issues_to_user_kanban.yaml b/.github/workflows/auto_add_issues_to_user_kanban.yaml new file mode 100644 index 0000000..9a35850 --- /dev/null +++ b/.github/workflows/auto_add_issues_to_user_kanban.yaml @@ -0,0 +1,14 @@ +name: Add to personal projects + +on: + issues: + types: + - assigned + pull_request: + types: + - assigned + +jobs: + add-to-project: + uses: CCBR/.github/.github/workflows/auto-add-user-project.yml@v0.1.0 + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/auto_add_reponame_labels.yaml b/.github/workflows/auto_add_reponame_labels.yaml new file mode 100644 index 0000000..d10710a --- /dev/null +++ b/.github/workflows/auto_add_reponame_labels.yaml @@ -0,0 +1,10 @@ +name: Auto add reponame as label to all issues and PRs + +on: + issues: + pull_request: + +jobs: + add_label: + uses: CCBR/.github/.github/workflows/add_reponame_issue_label.yml@v0.2.0 + secrets: inherit \ No newline at end of file