From 4796d01ed997f0e4cec65d80badebd1800ce22ed Mon Sep 17 00:00:00 2001 From: Max Kurapov Date: Wed, 28 Aug 2024 11:23:49 +0300 Subject: [PATCH] feat(workflow): add to docs project if issue is labelled with docs (#2913) --- .github/workflows/add_to_docs_board.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/add_to_docs_board.yml diff --git a/.github/workflows/add_to_docs_board.yml b/.github/workflows/add_to_docs_board.yml new file mode 100644 index 0000000000..cf28339b3c --- /dev/null +++ b/.github/workflows/add_to_docs_board.yml @@ -0,0 +1,16 @@ +name: Add to documentation project board +on: + issues: + types: + - labeled + +jobs: + add-to-project: + if: github.event.label.name == 'docs' + name: Add issue to project + runs-on: ubuntu-22.04 + steps: + - uses: actions/add-to-project@v1 + with: + project-url: https://github.com/orgs/interledger/projects/24/ + github-token: ${{ secrets.ADD_TO_PROJECT_TOKEN }} \ No newline at end of file