From 0917bc19fb963b5c2543b8d69219b1a34220a6ae Mon Sep 17 00:00:00 2001 From: thclark Date: Tue, 30 Nov 2021 18:46:33 +0000 Subject: [PATCH] OPS: Update workflow from octue/.github skipci --- .../synced-add-issues-to-octue-board.yaml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/synced-add-issues-to-octue-board.yaml diff --git a/.github/workflows/synced-add-issues-to-octue-board.yaml b/.github/workflows/synced-add-issues-to-octue-board.yaml new file mode 100644 index 0000000..c6fbf5f --- /dev/null +++ b/.github/workflows/synced-add-issues-to-octue-board.yaml @@ -0,0 +1,21 @@ +# WARNING: This file is synced from the octue/.github repository. +# Do not edit this file in any repo other than octue/.github, or your changes will be overwritten + +name: synced-add-issues-to-octue-board + +on: + issues: + types: [opened, reopened] + +jobs: + add-issues-to-octue-board: + runs-on: ubuntu-latest + steps: + - name: Add to Board + uses: monry/actions-add-issue-to-project@v1 + with: + # Personal Access Token with `repo`, `org:read` and `org:write` granted + github-token: ${{ secrets.PROJECT_AUTOMATION_GITHUB_TOKEN }} + project-owner: "octue" + project-number: 22 + issue-id: ${{ github.event.issue.node_id }}