From 8dfa30bbeb460aa564d90bd301be82186a7a0fc3 Mon Sep 17 00:00:00 2001 From: PPawlowski Date: Mon, 29 Jun 2026 15:35:06 +0200 Subject: [PATCH] Add certified nodes request to project 50 --- .github/workflows/project-automation.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/project-automation.yaml b/.github/workflows/project-automation.yaml index 93c6ed6..1d5ce6e 100644 --- a/.github/workflows/project-automation.yaml +++ b/.github/workflows/project-automation.yaml @@ -60,3 +60,21 @@ jobs: labeled: needs-triage project-url: https://github.com/orgs/FlowFuse/projects/15 github-token: ${{ steps.generate_token.outputs.token }} + + add-to-certified-nodes-board: + name: Add certified node requests to the Certified Nodes board + if: github.repository == 'FlowFuse/CloudProject' + runs-on: ubuntu-latest + steps: + - name: Generate a token + id: generate_token + uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 + with: + client-id: ${{ secrets.app-client-id }} + private-key: ${{ secrets.app-private-key }} + owner: ${{ github.repository_owner }} + - uses: actions/add-to-project@5afcf98fcd03f1c2f92c3c83f58ae24323cc57fd # v2.0.0 + with: + labeled: area:certified-nodes + project-url: https://github.com/orgs/FlowFuse/projects/50 + github-token: ${{ steps.generate_token.outputs.token }}