Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/project-automation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ on:
jobs:
add-to-project-board:
name: Add issue to project
if: |
github.repository != 'FlowFuse/website' &&
github.repository != 'FlowFuse/node-red-dashboard'
runs-on: ubuntu-latest
steps:
- name: Generate a token
Expand Down Expand Up @@ -45,7 +42,7 @@ jobs:
label-operator: AND
project-url: https://github.com/orgs/FlowFuse/projects/10
github-token: ${{ steps.generate_token.outputs.token }}

add-to-dashboard-backlog:
name: Add issues to the Dashboard Backlog project board
if: github.repository == 'FlowFuse/node-red-dashboard'
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/project-automation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Project automations
on:
issues:
types:
- opened
jobs:
add_issue_to_relevant_boards:
uses: flowfuse/github-actions-workflows/.github/workflows/project-automation.yaml@project-automation/v1
secrets:
app-client-id: ${{ secrets.GH_BOT_APP_ID }}
app-private-key: ${{ secrets.GH_BOT_APP_KEY }}
Loading