Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/OctoPrint/OctoPrint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGina Häußge <gina@octoprint.org>2022-06-20 16:49:00 +0300
committerGitHub <noreply@github.com>2022-06-20 16:49:00 +0300
commit01f24e6cea84051798c990190df51ee220c65986 (patch)
tree9176dbc913af56ac84959110624103120d9ef3f5 /.github
parent53b9b6185781c07e8c4744a6e28462e96448f249 (diff)
👷‍♂️ Add issues/PRs to backlog automatically
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/add_to_backlog.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/add_to_backlog.yml b/.github/workflows/add_to_backlog.yml
new file mode 100644
index 000000000..cd20b500c
--- /dev/null
+++ b/.github/workflows/add_to_backlog.yml
@@ -0,0 +1,20 @@
+name: Add issues/PRs to backlog automatically
+
+on:
+ issues:
+ types:
+ - opened
+ - transferred
+ pull_request:
+ types:
+ - opened
+
+jobs:
+ add-to-project:
+ name: Add issue or PR to OctoPrint Backlog project
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/add-to-project@main
+ with:
+ project-url: https://github.com/orgs/OctoPrint/projects/6
+ github-token: ${{ secrets.BACKLOG_PAT }}